Hey there, I'm having trouble changing the backdrop-filter using javascript. Could someone please assist me with this issue? Thanks!
<html>
<head>
<title>An Issue</title>
<style>
#div {
width: 120px;
height: 120px;
backdrop-filter: blur(0);
}
</style>
</head>
<body>
<div id="div"></div>
</body>
<script>document.getElementById("div").style.backdropfilter = "blur(15px)";</script>
</html>