I have recieved information on how to do a job but I was instructed to "escape a space" using javascript. What does that mean?
I have a radio button that MUST have a space in the name and I'm trying to reference the value of that button. For example
<input type="radio" name="MyProduct Option" value="$23">
function showPrice(name){
var price;
document.myform[name].value = price
alert(price)
}
I have a radio button that MUST have a space in the name and I'm trying to reference the value of that button. For example
<input type="radio" name="MyProduct Option" value="$23">
function showPrice(name){
var price;
document.myform[name].value = price
alert(price)
}
Comment