type or paste code here
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<div id="container" style="width:50%; margin:auto;">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="image1.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="image2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="image3.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next" id="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<script src="img.js"></script>
</body>
</html>
var images = document.querySelectorAll("img");
function rightarrow() {
var currentpic = images[0];
for (var i = 0; i < images.length; i++) {
if (i == images.length - 1) {
currentpic = images[0]
}
else {
currentpic = images[i];
}
}
}
var next = document.getElementById("next")
if (next.addEventListener) {
next.addEventListener("click", rightarrow, false);
} else if (next.attachEvent) {
next.attachEvent("onclick", rightarrow);
}
I am trying to get my right arrow button to work its not working for reason anyone know why
thanks