Greetings;
can someone please help me setup a visual studio code template for the jQuery exercisers. I read previous posts made by other camper about this same situation and I tried following the recommendation suggested to them to allow the animation in their code work, but it did not work for me. I visited Get started with Bootstrap · Bootstrap v5.3 and i got some links from there relating to the same installation, but none is actually allowing my code to execute the functions in the live server of Visual Studio Code. Can someone please examine the links in the head tag(element) and the entire template and hit me up with a hint. Thanks in advance
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jQuery Exerciser</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.compat.css"/>
<script rel="scriptsheet" src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<script>
$(doucument).ready(function() {
//do not delete!!
/*$("button").addClass("animated bounce");
$(".well").addClass("animated shake");
$("#dail4").addClass("animated fadeOut");
$("button").addClass("animated");
$(".btn").addClass("shake");
$("#dail12").addClass("btn-primary");
$("button").removeClass("btn-default");
$("#dail3").prop("disabled", true);*/
$("#dial6").css("color", "green");
$("#dial8").html("<em>#dial8</em>");
$("#dial5").remove();
$("#dial11").appendTo("#left-well");
$("#dial4").clone().appendTo("#right-well");
$("#dial6").parent().css("background-color", "brown");
$("#left-well").children().css("color", "green");
$(".dial:nth-child(5)").addclass("animated bounce");
$(".dial:odd").addClass("animated fadeOut");//this also have "even selector"
$("body").addClass("animated swing");//we can also use "hinge" like fadeOut
});
</script>
<!--above this line is jQuery formating-->
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Exerciser</h3>
<div class="row">
<div class="col-xs-6">
<h4>#left-well</h4>
<div class="well" id="left-well">
<button class="btn btn-default dial" id="dial1">#dial1</button>
<button class="btn btn-default dial" id="dial2">#dial2</button>
<button class="btn btn-default dial" id="dial3">#dial3</button>
<button class="btn btn-default dial" id="dial4">#dial4</button>
<button class="btn btn-default dial" id="dial5">#dial5</button>
<button class="btn btn-default dial" id="dial6">#dial6</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default dial" id="dial7">#dial7</button>
<button class="btn btn-default dial" id="dial8">#dial8</button>
<button class="btn btn-default dial" id="dial9">#dial9</button>
<button class="btn btn-default dial" id="dial10">#dial10</button>
<button class="btn btn-default dial" id="dial11">#dial11</button>
<button class="btn btn-default dial" id="dial12">#dial12</button>
</div>
</div>
</div>
</div>
</body>
</html>