Useful notes & manuals
from the
world wide web
L:
P:
Register now!
<<<1>>>
Automatic merging and versioning of CSS/js files with PHP | read more.. PHP
Solution from: http://www.ejeliot.com/blog/72 Created by tlw on 15.09.2024 @ 03:37

Most sites include a number of CSS and JavaScript files. Whilst developing it's usually easier to manage them as separate files but on a live site it makes sense to merge files to reduce the number of HTTP requests the browser has to make. For JavaScript this is particularly important as browsers block rendering whilst downloading.

Merging JavaScript objects | read more.. JavaScript
Solution from: http://stackoverflow.com/questions/171251/how-can-i-merge-properties-of-two-javascript-objects-dynamically Created by tlw on 15.09.2024 @ 03:37

for (attrname in obj2) { obj1[attrname] = obj2[attrname]; }

Reading anchor value from URL | read more.. JavaScript
Solution from: http://bytes.com/topic/javascript/answers/535179-reading-url-anchor-refrence Created by tlw on 15.09.2024 @ 03:37

self.document.location.hash self.document.location.hash.substring(1)

<<<1>>>
 
Created by THE LOST WEB © 2009-2012