Ok so i have two div’s which are hidden using jquery’s .hide(); onload
I have two function to .show(); them
function showIncorrectChar()
{
$("#csq-incorrect-characters").show();
}
function showMinChar()
{
$("#csq-min-characters").show();
}
Using Jquery/Javascript i need to find whether one of those div’s are visible if they are i want it to do nothing if they aren’t i need to call it
hideResultsTableContainer();
showResultsTree();
Use the
:visibleselector.