1.

What is serialize() in Jquery?

Answer»

In the standard URL- encoded notation jQuery serialize() is used to create the TEXT STRINGS. It also forms several other controls.
 

$("button").CLICK(function(){
    $("DIV").text($("FORM").serialize());
});



Discussion

No Comment Found