Using JQuery, we can simply make Ajax call. JQuery provides us simple methods to make Ajax call using GET or POST. We can use any of these HTTP methods to make Ajax request using JQuery.
1. $.get() : Load a remote page using an HTTP GET request.
Syntax: $.get(String url, Map params, Function callback) returns XMLHttpRequest
Example 1: [...]
Archive for July, 2008
Ajax using JQuery
Posted in Technical, tagged ajax, get, javascript, jquery, post on July 27, 2008 | 5 Comments »
Joke | Current situation of s/w professionals | Girl looking for groom
Posted in Fun, Joke, tagged Fun, Joke on July 25, 2008 | 3 Comments »
Vidhya: hey! what is the matter you have called up all of a sudden?
Nithya : do u remember that my parents gave my horoscope, to search for a suitable match, to many people? So many horoscopes of the groom has come.. in that 4-5 seems to match.. I don’t [...]
Why Jquery ?
Posted in Technical, tagged javascript, jquery on July 24, 2008 | Leave a Comment »
There have been a whole bunch of posts on this blog about the differences in code size between jQuery and Prototype. The basic premise of those posts (which I agree with) is that because of the way jQuery code is structured, all sorts of typical Javascript design patterns are rendered shorter and simpler in the [...]
Interesting behavior of Umlaut characters
Posted in Technical, tagged c, c#.net, java, javascript, js, PHP, Umlaut characters, vb.net, vbscript on July 24, 2008 | 2 Comments »
I found an interesting behavior with umlaut characters (ö,ü …). When we calculate the length of a string having umlaut characters (using string length function), different language compilers gives the different results.
I did some testing in some programming & scripting languages, and got some interesting results. Have a look
Java 5:
“ü”.length(); //output [...]