MEMISO
Member since Oct 4, 2009
- Profile: /members/4442-memiso.htm
- URL: http://www.memiso.com/
- Comments: 2
Recent Blog Comments By MEMISO
-
Using CSS Fixed Position Elements Across Browsers Without Javascript
Posted on Oct 17, 2009 at 8:30 AM
Nice article. I want to add important note about this usage. If !Doctype is not used, position:fixed doesn't work on Internet Explorer.... read more »
-
jQuery's is() Method Checks For Any Matching Elements
Posted on Oct 4, 2009 at 8:49 AM
My condution is "Only submit if at least one checkbox was checked." In this state, i can use is() method. $("#myform").submit(function(){ var chckbox = $('input[type="checkbox"]') if(chckbox.is(":checked")){ return true; } else { return false; } }); Like you said, This is a really tiny post, but ... read more »