This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let inputBox = document.getElementById("ff_150_input_text"); | |
inputBox.addEventListener('input', function(){ | |
inputBox.value = inputBox.value.toUpperCase(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let slider = document.getElementById('ff_148_rangeslider'); | |
let text = document.querySelector('.ff_range_value'); | |
let text2 = document.querySelector('.ff_range_value_2'); | |
slider.onchange=function(){ | |
let value = document.getElementById('ff_148_rangeslider').value; | |
value *= 15; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Change id with your password field's id | |
let passwordOne = document.getElementById("ff_143_password"); | |
let passwordTwo = document.getElementById("ff_143_password_again"); | |
passwordTwo.addEventListener('keyup', function(){ | |
let passwordTwo = document.getElementById("ff_143_password_again"); | |
console.log(passwordTwo.value); | |
//code here | |
if(passwordTwo.value==passwordOne.value){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let urlbox = document.getElementById("ff_150_chained_select_Website_"); //changed id with your specific id | |
urlbox.onchange = function(){ | |
let url = document.getElementById("ff_150_chained_select_Website_").value; | |
window.open(url); | |
} |
NewerOlder