Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <style> #slideMe { background: gold; padding: 20px; } </style> <!-- Load jQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <!-- Use jQuery --> <script> // Wait for DOM to load and be ready $(document).ready(function(){ // Click event handler $("button").click(function() { // Toggle the element $( "#slideMe" ).slideToggle( "linear" ); }); }); </script> <button>Slide it!</button> <p id="slideMe">Slide me up!</p>
Preview