InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of Param() Method? |
Answer»
empObject.name="Arpit"; empObject.age="24"; empObject.dept=”IT”; $("#clickme").click(function(){ $("span").text($.param(empObject)); }); It will set the text of span to “name=Arpit&age=24&dep=IT” It will set the text of span to “name=Arpit&age=24&dep=IT” |
|