The top pens for 2013!
Thanks to, CODEPEN.
This step-by-step guide assumes you have MAC OSX installed and are troubleshooting from an iPad/iPhone. This should work in a similar fashion if your mobile device is Android based. Ensure your localhost’s URL is aliased such as, myproject.dev
http_access deny to_localhost
and click save.Thanks to, egalo
/******************************************************************* * JavaScript Window Location Options * URL: http://www.sample.com/sample.htm?query=accreditation *******************************************************************/ window.location.search.substr(7); //'accreditation' window.location.href.slice(window.location.href.indexOf('?') + 7).split('&'); //'accreditation' (window.location.href.indexOf('query=') > -1); //true (window.location.href.indexOf('jumpTo=') > -1); //false