Skip to content

Instantly share code, notes, and snippets.

<span class="mceNonEditable"><!--START_RIT_NEWSLETTER-->[GroupSignup/739fdbd2-a5b5-4066-9294-75113dfced11/Send/1Step/a9acef21-c0d1-4b31-9917-3d3a091c8fda/cb1a610e-6177-4b8a-a7c8-01ea1ae91714]<!--END_RIT_NEWSLETTER--></span>
$(window).bind("load", function() {
CenterMap(new google.maps.LatLng(56.060188, -3.951609), 8);
});
// Make sure search form triggers on 'Enter'
$("#siteSearch").keydown(function(event) {
// enter has keyCode = 13, change it if you want to use another button
if (event.keyCode == 13) {
this.form.submit();
return false;
}
});