14 lines
263 B
JavaScript
Executable File
14 lines
263 B
JavaScript
Executable File
$(document).ready(function() {
|
|
//
|
|
// add your jQuery code here
|
|
// hides/shows paragraphs when either button is clicked
|
|
$("button").click(function() {
|
|
$("p").hide(2000).show(2000);
|
|
});
|
|
|
|
$("button").click(function(){
|
|
$("p").fadeIn().fadeOut();
|
|
});
|
|
|
|
});
|