Browsing articles in "Jquery"
Feb
11
2010

check keycode enter use javascript

This function use to check enter on form with jquery function check_key(e) { var keycode; if (window.event) keycode = window.event.keyCode; else if (e) keycode = e.which; if(keycode == 13){ return false; } }

Sep
21
2009

PHP, JSON and JavaScript usage

Today i want to introduce you to jSON (JavaScript Object Notation), in short, it is a simple format designed to exchange data between different programming languages. I will show you how to create JavaScript object, convert it to JSON string, and send to PHP script, which will decode jSON string to readable format (for PHP). But that’s not all, PHP script will create it’s own data object encode it to jSON string and send it [...]

Sep
3
2009

10 Ways to Instantly Increase Your jQuery Performance

1. Always Use the Latest Version jQuery is in constant development and improvement. John and his team are always researching new ways to improve program performances. As a sidenote, just a few months ago, he released Sizzle, a selector library that’s said to improve program performances up to 3 times in Firefox. If you want to stay up to date without having to download the library a thousand times, GIYF (Google Is Your Friend), in [...]

Sponsors