Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="text" onkeyup="grabCardSelection(this.value)"/>
function grabCardSelection(textNum) {
var selectBoxObj = document.getElementById('objName');
if (String(textNum).substr(0, 1) == '4') {
selectBoxObj.value = "Visa";
//This is assuming your values are named after
//the card names
}
}