Reputation: 3
I created a small website with bootstrap for a gaming clan of mine: karmaclan.ch
The problem is that every link is unclickable. All hrefs are set and you can get to the links with a click on the middle mousekey.
Can someone help me? :)
Upvotes: 0
Views: 112
Reputation: 1307
You have preventDefault
behavior in your js/javascript.js
file. Remove it.
$(document).on('click', 'a', function(event){
event.preventDefault();
...
});
Upvotes: 2