[jQuery] Hidden inline tags blockified when shown
Hello!
Two staples in my pre-jquery javascripting were these two functions:
function hide(element) { element.style.display = "none"; }
function show(element) { element.style.display = ""; }
However, when using the jquery $(element).show() and $(element).hide() functions my inline elements turn into block elements.
Should I not be using the show/hide functions with inline elements, or is there something I've missed?
Thanks for your help,
- Magnar
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/