SyntaxFix
Write A Post
Hire A Developer
Questions
I found JavaScript solution in iWebKit framework:
var a=document.getElementsByTagName("a"); for(var i=0;i<a.length;i++) { a[i].onclick=function() { window.location=this.getAttribute("href"); return false } }