jMaxInput: jQuery Twitter-Like Textarea
In Playground,
jMaxInput allows you to limit the input size of a textarea like it is done in Twitter. The number of characters left to type are shown while typing. The user […]
In Playground,
jMaxInput allows you to limit the input size of a textarea like it is done in Twitter. The number of characters left to type are shown while typing. The user […]
In Playground,
jStickyNote is a jQuery plugin that allows to create sticky notes on your web site. It is configurable and this is how you use it:
In Playground,
jBar is a jQuery Plugin that allows you to integrate notifications in your web site. The behavior is very similar to Twitter’s and Stackoverflow’s notification messages. The plugin is configurable […]
In Playground,
Here’s a list of 42 jQuery Navigation Techiques, Navigation plugins, and Tutorials built using jQuery: 1. How To Create A ‘Mootools Homepage’ Inspired Navigation Effect Using jQuery
In Playground,
Here’s a jQuery script for changing the stylesheet of an html page. The styles can be selected from the dropdown on top of the page. There are ten styles to […]
In Playground,
Here is a jQuery example for a captcha in a registration form. In order to pass the “Are you human” test, the user has to drag the numbers from 1 […]
In Playground,
A list of 42 jQuery image galleries, sliders, plugins and tutorials built using jQuery
In Playground,
This is a sliding menu plugin for jQuery which fires on mouseover and mouseout events.
In Playground,
Here’s a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec(‘dir’,$output,$error); while(list(,$row) = each($output)){ echo $row, “<BR>n”; } if($error){ echo “Error […]
In Playground,
Here’s a simple function that calculates the number of days between two dates. <?php //day’s seconds = 86400 function days_between($day_i,$month_i,$year_i,$day_f,$month_f,$year_f){ $days_in_between = (mktime(0,0,0,$month_f,$day_f,$year_f) – mktime(0,0,0,$month_i,$day_i,$year_i))/86400; return $days_in_between; } ?> //If […]