This is a small and very simple tutorial on how to create a clock for your website using javascript.Just add the below code to the section of your website where you want the clock to be displayed <span id="clock"></span> <script... (Continue reading)
Actually this javascript program familiar to many Bloggers, have long since javascript is made.The first few minutes so that each of our pages will automatically refresh itself in order to display the new-created post by the blog owner to be... (Continue reading)
Hi today i will explain you how to filter out inappropriate words from being updated or send from your website.This is simple javascript. badwords.js Contains javascript code. If you want add some more words in bad_words_array var bad_words_array=new Array("badword-1","badword-2","badword-3"); function... (Continue reading)
Close Event In Javascript Using OnUnload fuctions, its pretty simple.Check this out. <html> <body onunload=check()> <script type=”text/javascript”> function check() { a = “Mistonline.in” alert(a) } </script> </body> </html> Thanks VN:F [1.5.7_846]please wait...Rating: 3.0/10 (1 vote cast)VN:F [1.5.7_846]Rating: 0 (from 0... (Continue reading)
Hi guys here is the event that gets triggered when ever a browser [Internet Explorer, Firefox, Chrome] is closed. Its very simple just check out the script <html> <body> <script type=”text/javascript”> window.onbeforeunload = check; function check() { return “Are you... (Continue reading)