Archive for August 9th, 2009

Daily Digest for August 9th

August 9, 2009
By SeanJA
Daily Digest for August 9th

Shared iMuffler @zoster Probably… he wouldn’t remember it though… he had no concept of space A good talk on copyright and file sharing and the future of entertainment by @stephenfry check it out http://bit.ly/eDOAI @zoster That is better than fuzzy and white! RT @StephenAtHome: i just saw a triple-g rated movie....
Read more »

Posted in Daily | No Comments »

A couple useful jQuery Snippets

August 9, 2009
By SeanJA

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 in view function in_view(elem){ var docViewTop = jQuery(window).scrollTop(); var docViewBottom = docViewTop + jQuery(window).height();   var elemTop = jQuery(elem).offset().top;...
Read more »

Posted in Javascript, Open Source, Programming, jQuery | 9 Comments »