I have a list of countries and they all have an empty '#' anchor link.
I am stuck with telling JQuery to only "copy" one country to an empty div, but JQuery selects all '#' links inside the div.
Please see JS Fiddle link: http://jsfiddle.net/michelm/yb7MR/
and here is what I've done:
var country = $('a[href$="#"]').text();
$('a[href$="#"]').click(function () {
event.preventDefault();
$(this).addClass("active");
if ($('a').hasClass("active")) {
$('div.location').prepend('<p>Your Location is: </p>');
$('div.location').text(country);
$(this).removeClass("active");
} else {
$('a[href$="#"]').removeClass("active");
$('a[href$="#"]').not("active");
// do nothing
}
});
<body>
<a href="#">France</a><br />
<a href="#">Italy</a><br />
<a href="#">Spain</a><br />
<a href="#">Germany</a><br />
<div class="location"></div>
</body>
Thank you
event.preventDefault();is completely useless if you don't use.click(function ( event ) {– Roko C. Buljan Jan 5 at 6:33