How to make ajax call from onchange event of select box using jquery? If anyone has a sample, please post the code.
$("#selectboxid").change(function() { $.ajax({ url: "test.html", context: document.body, success: function(){ $(this).addClass("done"); }}); });