It seems hard to just have a link working inside a checkbox label, overriding the default click event
<input type="checkbox" name="pr1" id="checkbox-5a" />
<label for="checkbox-5a">Check3 <a href="http://www.google.com" data-ajax="false" rel="external" style=" z-index:70000;">link</a></label>
it probably requires javascript to make it work, and how? thx
http://jsfiddle.net/ca11111/M7Bwc/1
edit: seems can do it with onclick and location.href
<input type="checkbox" name="pr1" id="checkbox-5a" />
<label for="checkbox-5a">Check3 <a onclick="location.href='http://www.google.com'">link</a></label>
Try this:
demo