Sorry I'm really new to JQUery and would like to know how do I make an Div Slide Down?
JQuery is confusing to me and really just need help
|
Sorry I'm really new to JQUery and would like to know how do I make an Div Slide Down? JQuery is confusing to me and really just need help | |||
feedback
|
|
HTML <a id="click_to_slide">Click To Slide Down</a> <div id="slide_me_down"></div> CSS
#slide_me_down {
display: none;
width: 100px;
height: 100px;
background-color: #000;
}
JAVASCRIPT
$(document).ready(function () {
$('#click_to_slide').live('click', function () {
$('#slide_me_down').slideDown();
});
});
Here is a jsfiddle of the above code: http://jsfiddle.net/EfmeW/ Also if you want to have the div slideUp and Down depending on whether or not the div is already visible or not you can use .slideToggle() instead of .slideDown() | ||||
|
feedback
|
|
To slide an element down, just use this:
Check out an example here: http://jsfiddle.net/WvVf3/1/ Hope this helps. | ||||
|
feedback
|
|
When you say slide down, do you mean:
or
| |||
|
feedback
|
|
Use the following JQuery. You'll need to have a div with class myDivClass as JQuery uses CSS-selectors to find elements. The document.ready part is to ensure your page is fully downloaded / parsed before the Javascript is executed (this is a crucial step).
Here is a JSFiddle as an example to have a div slide down on a button press. P.S. If you are using Firebug or Chrome right, you can try this out right now on this page!
| ||||
|
feedback
|
|
Try this: HTML:
Javascript:
And Optional CSS:
Try this, and it will work :) | |||
|
feedback
|