var Map_Page = function( ) { } Map_Page.prototype.search = function( ){ if ($.trim($(".js-mapAddress").val()) == "") { Loading_Indicator.showMessage("Please insert an address to search around!"); return; } if ($.trim($(".js-mapDistanceToSearch").val()) == "") { Loading_Indicator.showMessage("Please insert the distance to search around this address!"); return; } $(".js-searchForm").submit(); } var Map_View = null; $(document).ready(function () { Map_View = new Map_Page(); $(".js-mapAddress").keyup(function (e) { if (e.which == 13) { Map_View.search(); } }); $(".js-searchButton").click(function(){ Map_View.search(); }); });