jQuery Back Button

This is a jQuery code snippet to simulate a back button based on the users last web page. $(function(){} $(‘.back’).click(function(){ parent.history.back(); return false; }); }); This will trigger Back button on all elements with the class name “back”. If you would like to specify an element just use the element name $(‘#back’).click(function() If you would…Continue reading jQuery Back Button

Download Browseable Copy Of A Website Using Wget

Wget is a great tool in linux to download files from the internet. Wget can also be used to download a browseable copy of a website into your hard disk. To download a complete website, use the command provided below [code]wget  –recursive  –no-clobber   –page-requisites  –html-extension  –convert-links  –restrict-file-names=windows –no-parent -e robots=off  http://google.com[/code] Wget will download all…Continue reading Download Browseable Copy Of A Website Using Wget