diff --git a/entries/jQuery.param.xml b/entries/jQuery.param.xml
index 9a80fc2b..bcec5563 100644
--- a/entries/jQuery.param.xml
+++ b/entries/jQuery.param.xml
@@ -21,6 +21,9 @@
a=[object+Object]&b=1&b=2&b=3
To abbreviate the serialization of keys with null values, we can set the standaloneKeys
argument to true
+var myObject = {
+ x: 1,
+ y: null
+};
+var abbreviatedSerialization = $.param( myObject, false, true );
+
+alert( abbreviatedSerialization );
+