$(document).ready(function(){
$("#btn").click(function(){
$("#text").text("Hello, jQuery!");
});
});
$(document).ready(function(){
$("#hide").click(function(){
$("#box").hide();
});
$("#show").click(function(){
$("#box").show();
});
});
$(document).ready(function(){
$("#toggle").click(function(){
$("#box").toggle();
});
});
$(document).ready(function(){
$("#animate").click(function(){
$("#box").animate({left: '250px'});
});
});
$(document).ready(function(){
$("#loadData").click(function(){
$.ajax({
url: "https://api.example.com/data",
method: "GET",
success: function(response){
$("#dataContainer").html(response);
}
});
});
});
$(document).ready(function(){
$("#datepicker").datepicker();
});