Tagged Questions

4
votes
1answer
3k views

JQUERY Prepending an LI to an UL with Animation

I have a UL and I'm working to dynamically add a new LI to the top of the UL with some animation. I have the following so far which works ok: $("#container").prepend('<li ...
2
votes
3answers
172 views

Hidden fields in contact form

Is it possible to use jQuery to display hidden fields based on different selections from a dropdown menu? I'm having trouble writing the code for more than one hidden field. Basically, I need to ...
0
votes
6answers
108 views

What is the difference between JQuery's hide() and slideDown()/slideUp()?

It seems like after calling both result is the same.
0
votes
2answers
742 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 ...