Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Link not reacting on click in jsfiddle

Tags:

html

css

jsfiddle

I have some links which I have styled using some Twitter Bootstrap CSS. The problem is that the links don't follow to the url specified in the href attribute. Please see this fiddle.

like image 585
Randomblue Avatar asked Feb 23 '23 00:02

Randomblue


1 Answers

This is the normal behavior in JSFiddle: the page forbids opening links on the same frame. For testing purposes, however, you can add 'target="_blank"' to the 'a' tags to open the links in another window.

like image 124
Adonais Avatar answered Mar 02 '23 00:03

Adonais