Dear all,
just a very basic question but at the moment I am missing the forest through the trees.
On an advance search page, I have added some custom code within the Javascript event. Now I want to prevent processing of the page after clicking SEARCH in some cases. Please find below my code
$("[id~=searchButton]").click(function() {
if("something")
// DO NOT SEARCH
else
// SEARCH
});
Can you provide me with a solution... I guess it is very simpel...
Regards
Daniel