Hi Romeo,
Welcome to jQuery! The question that you asked is better suited for
the main jQuery group:
http://groups.google.com/group/jquery-enThis group specifically deals with jQuery UI, which is built upon
jQuery and used for UI manipulation and effects.
That said, here's the power of jQuery to handle your problem (not
tested)...
function returnDelete()
{
if ($("input:checked", "#standardView").size() > 0)
{
$("#delState").val("DeleteMode");
$("#pageNO").val("1");
$("#standardView").submit();
}
else
{
alert("Please select at least one!");
}
}
Hth,
Dave