Other Queries ... How to check the ID of pages or posts in wp? How to show or get ID of pages and posts in wordpress? Here is simple way to check that... From Dashboard of the website. Go to...
How to find ID of posts or pages in wordpress ?
How to check or uncheck checkbox using jQuery
Here is the simple way to check and uncheck checkbox button using jQuery. 1. The example below show that.. on change dropdown option of field.. all the check-boxes will be unchecked . jQuery('#nst').change(function(){ jQuery('input:checkbox').each(function() { this.checked = false; }); });...