diff --git a/docs/example-pager-ajax.html b/docs/example-pager-ajax.html
index 95f072d8..b236bdd9 100644
--- a/docs/example-pager-ajax.html
+++ b/docs/example-pager-ajax.html
@@ -79,6 +79,7 @@
// add more ajax settings here
// see http://api.jquery.com/jQuery.ajax/#jQuery-ajax-settings
ajaxObject: {
+ type: 'GET', // default setting
dataType: 'json'
},
diff --git a/docs/example-widget-pager-ajax.html b/docs/example-widget-pager-ajax.html
index 07515c41..d6eab5b2 100644
--- a/docs/example-widget-pager-ajax.html
+++ b/docs/example-widget-pager-ajax.html
@@ -90,6 +90,7 @@
// modify the $.ajax object to allow complete control over your ajax requests
pager_ajaxObject: {
+ type: 'GET', // default setting
dataType: 'json'
},