I have a combo box that I loaded via AJAX, when I submit my form the name/value pair gets transmitted just fine but when i try to do client side validation via javascript it doesn't get the value.
var obj = document.formname.element;
if (obj.value == '')
{
...
}
Is there some special method to this or will it simply not work?
Thanks!
var obj = document.formname.element;
if (obj.value == '')
{
...
}
Is there some special method to this or will it simply not work?
Thanks!