A couple useful jQuery Snippets
For popups, just add class=”popup” jQuery(’a.popup’).live(’click’, function(){ newwindow=window.open($(this).attr(’href’),”,’height=200,width=150′); if (window.focus) {newwindow.focus()} return false; }); To open in a new tab, add class=”newTab” jQuery(’a.newTab’).live(’click’, function(){ newwindow=window.open($(this).href); jQuery(this).target = "_blank"; return false; }); Check if something is…
A better way to use jQuery in WordPress Themes
Since a lot of people come to my blog looking for a way to add jQuery into their wordpress themes, it turns out that there is a better way to do it than the way…
Why I use NetBeans
I am sure you know by now that IBM was set to aquire Sun Microsystems this week. This would have been bad seeing as most of their products directly compete/overlap with eachother. Fortunately they backed…
jQuery bsod plugin
So I was checking up on my twitter feed yesterday and saw a tweet that direceted me to this: http://devthought.com/wp-content/projects/mootools/BSOD/: The script BSOD.js provides an easy-to-use class to boost the error reporting user experience of…
Recent Comments