I have a site that already takes advantage of the hash in the URL and I don't want it changed. When I use Zurb Foundation and use href="#"
for the menu item, clicking on it removes the previous hash value.
How can I override this behavior?
Update: I think that it's better to stay with element because when I change it, it changes the styling that is bound to that HTML element. I always prefer when using with a design framework to stay with the default conventions and not mass with overriding css attributes.
thanks.
Please read up on Progressive Enhancement and Unobtrusive JavaScript.
You should (almost) never have href="#"
. It is a link to an undefined anchor (which will be the top of the page). People who use it normally do so because they want to dangle JavaScript off it.
If you are going to have a link, then it should point to somewhere useful. Typically this will be another page that uses server side technology to get the same effect (albeit less quickly) as the JavaScript would give. You can then prevent the normal behaviour of the link.
For example:
<a href="/foo/bar" class="whatever">Foo: Bar</a>
With the script:
addEventListener('click', function (ev) {
if (ev.target.classList.contains('whatever')) {
ev.preventDefault();
loadWithAjax(ev.target.href);
}
});
If the JavaScript does something that can't have equivalent functionality expressed in a link, then you shouldn't be using a link in the first place. Use a <button>
, and seriously consider adding it to the document using JavaScript/DOM instead of HTML.
(NB: Quite a lot of people want to support older browsers which don't recognise classList
or addEventListener
checking browser support and finding compatibility routines is left as an exercise for the reader. Using YUI, jQuery or similar is one approach for dealing with compatibility.)
You can listen for the click event and call preventDefault
to stop the browser from setting the hash.
Example with jQuery:
$('.mylink').click(function(event){
event.preventDefault();
});
Instead of having #
in href, you can use javascript:;
in href which will not let the url change.
<a href="javascript:;">:Link</a>
Instead of using "#" use "javascript:void(0)" See this link for more information Which "href" value should I use for JavaScript links, "#" or "javascript:void(0)"?
Simply use this:
<a href="javascript:void()">text</a>
This works for me.
$(document).on('click', 'a', function (e) {
if ($(this).attr('href') == '#') {
e.preventDefault();
}
});
I've done the following to prevent all the tags with href="#" attribute perform navigation (Using JQuery):
$('a[href$="#"]').click(function (event) {
event.preventDefault ? event.preventDefault() : event.returnValue = false;
});
Have below code in your default library.
This will take the href value on click event and if hash (#) value found, then it will prevent the default event which will avoid redirecting to href value.
$(document).on('click', 'a', function (e) {
if ($('#'+e.target.id).attr('href')=='#') {
e.preventDefault();
}
});
Easiest way to do this is <a href="#hash" onclick="event.preventDefault();"></a>
My solution is a little the same, using Javascript:
-> Replace
<a href=#foo class="ouvrir">Newsletter</a>
by:
<a href="javascript://" class="ouvrir">Newsletter</a>
And the Javascript:
<script>
$('.ouvrir').click(function(event){
window.location.href = "#foo";
history.pushState('', document.title, window.location.pathname);
});
</script>
I picked it very lately, but I tried removing href attribute complete from the tag and it worked fine. insted of
<a href="#" onclick="something"></a>
use
<a onclick="something"></a>
来源:https://stackoverflow.com/questions/20215248/prevent-href-link-from-changing-the-url-hash