I need to determine if a jQuery object has the jQuery .click() event, if not I need to use the JavaScript one: $("#Call")[0].click()
Basically I need a way to this (this is pseudo code):
if ($("Call").click() == valid){
    $("Call").click()
} else {
    $("Call")[0].click()
}
 
     
    