Hi,
I have a textbox so if someone types Cars i want to abr it to CR, If someone types financial i want to FCR
so here is my code
Code:
var getabrdata=document.frm1.abrfield.value;
getabrdata=getabrdata.replace("Cars", "CR");
getabrdata=getabrdata.replace("financial", "FCR");
but its not working can someone tell me what i am doing wrong
todd