Full Screen Flickr Gallery
Wednesday, February 25th, 2009 | 2 Comments
I made a fancy full screen image gallery over at Devkick.
Wednesday, February 25th, 2009 | 2 Comments
I made a fancy full screen image gallery over at Devkick.
Wednesday, April 23rd, 2008 | 9 Comments
I’ve compiled a pretty good list of useful jQuery scripts that I bookmarked over some time and also used in a few projects over at the DevKick blog. Worth a visit: Useful jQuery: a Compilation of jQuery Utilities
Sunday, April 13th, 2008 | 22 Comments
Ok, so you have an expandable list that works nice in jQuery, but as you add more code and graphics to your HTML document, chances are that the onDomReady() becomes too slow and you’ll see a familiar flicker before the jQuery kicks in. In your case, the entire list will be shown for a millisecond before the DOM is fully loaded and the list contracts. One way of avoiding this is dirty but surprisingly easy:
document.write('<style type="text/css">body{display:none}</style>');jQuery(function($) { $('body').css('display','block');});The document.write looks ugly, but it actually works really well in this case. First hide the body via a direct style injection through javascript, and then show it onDomReady. Flicker-free!
Thursday, March 20th, 2008 | 25 Comments
jQuery is a javascript framework that is becomming insanely popular. It is fast, easy to use and creating custom plugins and components is done in a breeze. These days, everyone is a jQuery developer and the plugin repository over at jquery is virtually exploding with new plugins being added every day.
In light of all this, here are my eight best tips for becomming a better jQuery coder that you might consider before taking on your next project.
Thursday, February 21st, 2008 | 10 Comments
Not even a week after I posted about the initial beta of Galleria the project has already grown into 1.0b and I can see true potential in scalability and usage for this javascript gallery.
The project now has a home page, a code repository, documentation, wiki and developers info at google code, a couple of new demos and soon-to-come real-world examples.
File bug reports at the google code page. Other comments/suggestions/questions etc. can be commented here in the kitchen. Enjoy!
You are currently browsing the archives for the jQuery category.