I have one jquery method and i used call that method on click of a button . So in that code i have one line \" $(\"#loadingMessage\").css(\'padding-top\',\'6%\');
$(\"#loadingMessage\").css(\'padding-top\',\'6%\');
If you want to restrict #SearchButton click event to fire only once, use .one method
.one
$('#SearchButton').one('click', function() { ... });