Steve Ross
Member since Dec 1, 2009
- Profile: /members/4867-steve-ross.htm
- URL: http://blog.stevensross.com
- Comments: 3
Recent Blog Comments By Steve Ross
-
Building Single-Page Applications Using jQuery And ColdFusion With Ben Nadel (Video Presentation)
Posted on Feb 15, 2011 at 3:00 PM
You should check out "Sammy.js" http://sammyjs.org/ And I know you work (like I do) most of the time using CF but, couchdb coupled with a one page json app is unbelievable. -Steve... read more »
-
Using jQuery To Detect CSS-Based Table Display Capabilities
Posted on Dec 1, 2009 at 12:37 PM
you could kill the regex with this one liner and it would execute a whole lot faster: return(tableLayoutTest.html().length > 37); // length of the divs if they are empty... read more »
-
Using jQuery To Detect CSS-Based Table Display Capabilities
Posted on Dec 1, 2009 at 12:03 PM
why not use this? if($.browser.msie && $.browser.version >= 8 ){ // do your thing } I know they say that it isn't for browser "detection" but seems to work great...... read more »