Profile
Achievement
You have not received any achievements.a1ias's Recent Snippets
- All /
 « Prev 1 Next »
This is a little code snippet that I use in almost every project that isn’t based on a popular CMS. Since its fairly expensive to hit the database on every page load, its a smart idea to cache the plain HTML markup of your page and serve that up. Y...
        
        
        
            0 
        
        
            2434 
        
                    posted 10 years ago by a1ias
            Check if jquery was loaded from CDN. If not, load it from own website.
        
        
        
            0 
        
        
            1467 
        
                    posted 10 years ago by a1ias
            Usage:
Let's say we have an url: http://primera.vremenno.net?foo=yes&bar=no
var hash = getUrlVars();
alert(hash['foo']); // returns 'yes'
alert(hash['bar']); // returns 'no'
        
        
        
            0 
        
        
            2390 
        
                    posted 14 years ago by a1ias
            HTML should look like this:
<div>
	<p>Lorem ipsum here</p>
</div>
<div>
	<img>
</div>
        
        
        
            0 
        
        
            2321 
        
                    posted 14 years ago by a1ias
            Well, many of you are used to just replace the lack of min / max width / height for IE with fixed dimensions, right? But you don’t need to do it anymore. IE is not a strict standards browser and sometimes we can take advantage of this to code thing...
        
        
        
            0 
        
        
            2364 
        
                    posted 14 years ago by a1ias