Hi all,
I am trying to modify modal form example from http://jqueryui.com/demos/dialog/
so it would check for drop down selection.
I've added
function checkSelect(n,p) {
if ( (n.selectedIndex == 0) && (p.length < 5)) {
n.addClass('ui-state-error');
updateTips("You must either type in or select category");
return false;
} else {
return true;
}
}