Things that will make your website much faster

What will make my website faster? How to optimize page load time? How to make web site appear to load faster for end user? Updated Feb 9, 2011. This is excerpt from article: How big HTML images / CSS / JS / png / etc. should be to fit network packet (MTU) efficiently List of …

HTTP POST must be encoded and windows.location is encoded

When using JavaScript window.location in your code, be aware, that window.location is encoded using JavaScript escape function. It is not always obvious because characters, that get encoded / decoded using escape() / unescape() is rare in urls. Use the following syntax to get human readable url: unescape(window.location) URL: http://example.com/test url/ window.location: http://example.com/test%20url/ unescape(window.location): http://example.com/test url/ …

Edit any website / webpage with simple JavaScript

Copy the following one line JavaScript into address bar of browser to enable ‘edit mode’. javascript:document.body.contentEditable=’true’; document.designMode=’on’; void 0 Now you can add or delete any text, move images and objects, and more. Have a fun! Tested on Internet Explorer 8 and 6, Firefox 3.5.2, Opera 10, Google Chrome 2.0.172.39 and Apple Safari 4.0.3.