Tagged Questions

0
votes
1answer
14 views

jQuery: show() vs. slideDown() - different impact on $(document).height()!

This is bizarre. I have a div. It is set with display: none. If I use $('#id').show(); then $(document).height() is updated with the height of #id. However, if I use $('#id').slideDown(); then ...
0
votes
1answer
125 views

Jquery Show and hide within a table

I have a table with content and a image that when clicked shows hidden content contained within a div. This div has another table within to format the content. Now when i test this in IE and chrome ...
0
votes
2answers
733 views

Jquery: slideUp('slow') vs hide('slow')

Does slideUp('slow') and hide('slow') same or different? Example Code: <html> <head> <script type="text/javascript" src="jquery.js"></script> <script ...