Added dirocty from javascript to jquery

This commit is contained in:
2025-11-20 16:20:58 +03:00
parent 31a20b5fe5
commit 9202203116
351 changed files with 7583 additions and 1346 deletions

View File

@@ -0,0 +1,13 @@
$(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();
});
});