href="#" Going to Top of Page - Prevent? [duplicate]
Solution 1:
<a href="#!" class="service">Open</a>
Solution 2:
In your event handler, add e.preventDefault();
(assuming e
is the name of the variable holding the event):
$('.service').click(function(e) {
e.preventDefault();
});