On a site that I'm building for someone, I am making most internal links use pushState since it is a faster user experience. I'm having a problem with getting the href attribute from an anchor <a> element that is loaded dynamically. People always tell me to use .on() rather than .live() because .live() is deprecated, but then I run into problems like this.
Here's my code:
$('#artists').on('click', '.artist a', function(e) {
SM.config.loader.show();
var href = $(this).attr('href');
SM.loadContent(href,'artist');
history.pushState('', 'New URL: ' + href, href);
e.preventDefault();
});
There is no href attribute being returned (obviously) so the URL is not changing.
Basically my question is how do I get the href attribute from the element in the second parameter of the on event?
this) you are sorted. Please create a jsfiddle.net demo. – Felix Kling Jul 10 '12 at 17:59thisandthis.hrefto see which element is triggering the event. – Kevin B Jul 10 '12 at 17:59code.jquery.com/jquery-latest.js) – Nathan Jul 10 '12 at 18:13