Daily Tip
Knowing where your visitors came from could be a really valuable information, and php allows us to get that information easily. This is how it’s done.
Continue reading
Articles about speeding up your php are really frequent on the net, and every single one of them includes using single quotes instead od double quotes, at least when you don’t have any variables in that section you are echoing. I did a little test and here is the result.
Continue reading
Sometimes you want an input field to be selected by default(automaticaly selected). Like when you go to google the search input field is automaticaly selected. We will do this in today’s daily tip using jQuery.
Continue reading
In today’s little tip we are going to make a hover effect using jQuery and CSS.
Continue reading
Creating zebra stripes with CSS and jQuery. CSS will be used for the classes (odd and even rows) and jQuery to add the classes.
Continue reading
If you want to limit the characters your user/visitor can type in an input field, you CAN, using the maxlength attribute. But if you want to limit the characters for textarea, you CAN’T, because it doesn’t support the maxlength attribute like inputs do. So here is a little jQuery script that will make the textarea’s maxlength attribute work.
Continue reading
We all want to code much faster, right? Well there is a nice app that will help you code much much faster.
Continue reading
You might have noticed this little effect on many websites. It’s a gray text inside an input box and when you click the text disappears. That’s what we’re making in today’s daily tip.
Continue reading
In today’s daily tip we will make a little jQuery script to check and return the visitor’s browser.
Continue reading
There are few reasons why you would want to disable the menu we get after clicking right mouse button. One of them is if you want to show your own menu. In this daily tip we will disable that default menu using jQuery.
Continue reading