PotatoPredictor
PotatoPredictor

Reputation: 3

Can't click on any links in my website

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

Answers (1)

cnnr
cnnr

Reputation: 1307

You have preventDefault behavior in your js/javascript.js file. Remove it.

$(document).on('click', 'a', function(event){
  event.preventDefault();

  ...
});

Upvotes: 2

Related Questions