Difference between $(function() and $(document).ready
Answers
Answered by
1
$(function() {
$("a").click(function(event){
alert("Thanks for visiting!");
});
});
pls thank it and mark brainiest answer
and this
$(document).ready(function(){ $("a").click(function(event){ alert("Thanks for visiting!"); }); });pls thank it and mark brainiest answer
Similar questions