Jquery Course

There are various ways to Show and Hide an element on a page with jQuery, one of these methods is with a sliding motion.

slideDown() and SlideUp()

The slideDown() method displays the matched elements by animating their height.
The slideUp() method hides the matched elements with a sliding motion.
These two jQuery methods have the following sintaxes:
$('selector').slideDown('duration');
$('selector').SlideUp('duration');
- "duration" - (optional) indicates the speed of the effect. It can be the strings "fast" and "slow", or a number that indicates the speed in milliseconds.

To execute some instructions when sliding motion is finished, you can use the following syntaxes:
$('selector').slideDown('duration', function() {
  // code to execute when slideDown  finished
});
$('selector').SlideUp('duration', function() {
  // code to execute when SlideUp is finished
});

Example slideDown

Displays a <div> (with id="dv1") with a sliding motion, then, when this effect is finished, displays another <div> (with id="dv2") in the same way.
<style type="text/css"><!--
div { display:none; float:left; width:200px; height:100px; }
#dv1 {background:#0708fe; }
#dv2 {background:#07fe08; }
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when the tag with id="btn" is clicked, apply slideDown to #dv1, then to #dv2
  $('#btn').click(function() {
    $('#dv1').slideDown(1000, function() {
      $('#dv2').slideDown(800);
    });
  });
});
--></script>

<div id="dv1">Here can be some content</div>
<div id="dv2">Another content</div>
<button id="btn" style="clear:both;">Show</button>
Click the button below to see the effect.

Example slideUp

When click on a button, hides <div> (with class="cls"), then hides the button.
<style type="text/css"><!--
div.cls { float:left; width:200px; height:100px; }
#dv1 {background:#0708fe; }
#dv2 {background:#07fe08; }
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when the tag with id="btn" is clicked, hides all DIVs with class="cls"
  // then hides the button
  $('#btn').click(function() {
    $('div.cls').slideUp(1000, function() {
      $('#btn').slideUp('slow');
    });
  });
});
--></script>

<div id="dv1" class="cls">Here can be some content</div>
<div id="dv2" class="cls">Another content</div>
<button id="btn" style="clear:both;">Hide</button>
Click on the "Hide" button to see the effect.
Here can be some content
Another content

slideToggle() method

The slideToggle() displays or hides the matched elements by animating their height. If the element is initially displayed, it will be hidden; if hidden, it will be shown.
Syntax:
$('selector').slideToggle('duration');
• Or, if you want to execute a function when sliding motion is finished, use this syntax:
$('selector').fadeToggle('duration', function() {
  // code to execute when fade is finished
});
- "duration" - sets the speed of the effect. It can be the strings "fast" and "slow", or a number that indicates the speed in milliseconds.

Example. Vertical menu with two lists that will be displayed when the mouse is over the menu, and hidde them when mouse out:
<style type="text/css"><!--
ul { float:left; cursor:pointer; }
li.cls {
 display:none;
 background:#e0e0fe;
}
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when mouse is over or out UL, apply slideToggle
  $('ul').hover(function() {
    $(this).find('.cls').slideToggle('slow');
  });
});
--></script>

<ul>
 <li>Free Courses</li>
 <li class="cls"><a href="https://coursesweb.net/html/">HTML</a></li>
 <li class="cls"><a href="https://coursesweb.net/css/">CSS</a></li>
 <li class="cls"><a href="https://coursesweb.net/javascript/">Javascript</a></li>
</ul>
<ul>
 <li>Tutorials</li>
 <li class="cls"><a href="https://coursesweb.net/actionscript/lessons-as3">ActionScript</a></li>
 <li class="cls"><a href="https://coursesweb.net/ajax/">Ajax</a></li>
 <li class="cls"><a href="https://coursesweb.net/jquery/jquery-tutorials">jQuery</a></li>
</ul>
<br style="clear:both;" />
- The hover() method binds handlers for both mouseenter and mouseleave events.
This is the result of the code above. Position the mouse over the "Free Courses" and "Tutorials".

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to add definition lists into a <dl> element?
<dt> <dd> <li>
<dl>
 <dt>HTML</dt>
  <dd> - Hyper Text Markup Language</dd>
  <dd> - Language for web pages</dd>
</dl>
Which CSS property can hide an element on page, letting an empty space in its place?
display position visibility
#id {
  visibility: hidden;
}
Click on the event which is triggered when the mouse clicks on an object.
onclick onmouseover onfocus
document.getElementById("id").onclick = function(){
  alert("http://CoursesWeb.net/");
}
Indicate the PHP variable that contains the contents of both $_GET, $_POST, and $_COOKIE arrays.
$_SESSION $_GET $_REQUEST
if(isset($_REQUEST["id"])) {
  echo $_REQUEST["id"];
}
Using slideDown and SlideUp

Last accessed pages

  1. SHA512 Encrypt hash in JavaScript (24764)
  2. Multiple Select Dropdown List with JavaScript (13465)
  3. Animating in Flash - Frame-by-Frame Animation (2773)
  4. Common PHP Errors and Solutions (9676)
  5. FTM2S - File Transfer Manager between two Servers (1813)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (253)
  2. Read Excel file data in PHP - PhpExcelReader (91)
  3. The Four Agreements (77)
  4. PHP Unzipper - Extract Zip, Rar Archives (76)
  5. The Mastery of Love (66)