How To Reload a Page Using JQuery or JavaScript

Author: , September 6th, 2012

location.reload(); ~or~ window.location = window.location.pathname;

How To Get the Current URL in Javascript

Author: , September 6th, 2012

var pathname = window.location.pathname;

How To Redirect To A New Page After A Delay Using Javascript

Author: , August 16th, 2011

How To Get The Current Path, HREF, and Title Using jQuery

Author: , June 5th, 2011

Various Ways to Obtain Various Information:

Redirecting Using CGI.pm

Author: , October 7th, 2010

To generate a redirection header in CGI.pm use the following syntax where $q is the cgi handle: print $q->redirect(‘http://wyzaerd.com/documents/resume.pdf’); If you use redirection like this, you should not print out a header as well. You should always use full URLs (including the http: or ftp: part) in redirection requests. Relative URLs will NOT work correctly.