Search This Blog
Saturday, July 11, 2009
Thursday, July 9, 2009
Wednesday, July 8, 2009
Monday, July 6, 2009
Sunday, July 5, 2009
Wednesday, July 1, 2009
Hidden div not displaying in Firefox (display:none)
Don't use:
var obj=document.getElementById('divname');
if (obj.style.display=='none'){obj.style.display="";}
(the above works only in IE, not in firefox)
Instead; use:
document.getElementById('divname').style.display="";
(the above works both in firefox n IE)
Post html form to aspx page
http://stackoverflow.com/questions/209301/how-to-post-a-form-from-html-to-aspx-page
dont forget the "name" attribute :)
Subscribe to:
Posts (Atom)