Entries by chameleon

How Google Search by Image Works

Have you ever wondered how Google Search by Image Works? How Google Search by Image Works Back in 2011 Google announced a new way to find things on the Internet which meant that instead of searching Google for text keywords you can search for images. How Google Search By Image Works Google’s Search By Image […]

Apple Time Machine on a Network Drive

We have been messing with Apple MAC’s being in the web industry and at some point you will want to back up using the Time Machine to a Network Drive. Network drives (NAS) are so popular and cheap we all have one and if your do not at the moment you will soon. Ensure the […]

Disable Back Button in Browser

Technically it is not possible to disable the back button, however there are certain things you can do to work with the back button actions. <SCRIPT> window.history.forward(); function noBack() { window.history.forward(); } window.onbeforeunload = function() { return “Please DO NOT USE the browser back button.”; }; </SCRIPT> This works great in IE and Chrome but […]

Warn User if Back is Pressed

Preventing users from going back using the back button is something that gets asked every now and again. So if you want to warn a user if the “back button” is pressed then you can use the following javascript snippet:- window.onbeforeunload = function() { return "If you go back your work will be lost."; }; […]