Open In App

jQuery | Misc param() Method

The param() method in jQuery is used to create a representation of an array or an object. This representation is created in a serialized way. This serialized values can be used in making an ajax request in URL.

Syntax:



$.param(object, trad)

Parameter:

Examples:




<!DOCTYPE html>
<html>
  
<head>
    <script src=
  </script>
      
  <script>
        $(document).ready(function() {
            GFGlang = new Object();
            GFGlang.FirstLang = "C";
            GFGlang.SecondLang = "CPP";
            GFGlang.ThirdLang = "JAVA";
            GFGlang.FourthLang = "PYTHON";
            
            $("button").click(function() {
                $("div").text($.param(GFGlang));
            });
        });
    </script>
</head>
  
<body>
    <h1 style="color:green;"
                GeeksForGeeks 
            </h1>
    <button>
      Serialize object
  </button>
  
    <div></div>
  
</body>
  
</html>

Output:
Before Click:



After Click:


Article Tags :