List/Grid Scripts Subscribe RSS feed of category Scripts
Remove admin color scheme picker from profile
Add this script to the functions.php of your wordpress theme will remove the admin color scheme picker from the profile page. if(is_admin()){ remove_action(“admin_color_scheme_picker”, “admin_color_scheme_picker”); }
How to check date if date is between two date
This function the return the true and false if date is exist or not exist. function dateWithin(StartDate,EndDate,CheckDate) { var b,e,c; s = Date.parse(StartDate); e = Date.parse(EndDate); c = Date.parse(CheckDate); if((c…
How to fetch current date and time using Javascript
JavaScript Current Time Clock With the newly created Date Object we can show the current date and time, now only a variable which store the current date and time. We…






