var selector= '.tn-elem__2381583471602451581454.tn-atom';
- проверяете свой селектор, в который нужно вставить работу скрипта, при необходимости -- корректируете под свои нужды.<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
$('.catalog_aside .down .btn-dropdown').click(function(){
$('.catalog_aside ul ul').css({display: 'none'})
.siblings('.btn-dropdown').removeClass('active')
.parent('li').removeClass('open');
$(this).parent().toggleClass('open');
if($(this).siblings('ul').is(':visible')){
$(this).siblings('ul').slideUp();
$(this).removeClass('active');
}else{
$(this).siblings('ul').slideDown();
$(this).addClass('active');
}
});
document.getElementById("form").submit(function(event) {
if (whatever == true) {
event.preventDefault();
document.getElementById("submitting").innerHTML = "Submitting...";
}
});
document.getElementById("form").onsubmit = function(event) {
if (whatever == true) {
event.preventDefault();
document.getElementById("submitting").innerHTML = "Submitting...";
}
};
<input id="bodybg" type="color">
<script>
document.getElementById('bodybg').onchange = function () {
document.body.style.backgroundColor = this.value;
}
</script>
А если я сделаю так:
var backgroundImage = document.getElementById("back").style.opacity = "1";
// А потом с помощью созданной переменной так же менять стили в разных ф-иях в разных ситуациях
= "1";
//...