soundlover
Active Member
Its not working on vb 4.1.4
http://www.mysite.com/
and tried too:
http://www.mysite.com/links.js
Contact me on MSN I will fix it for ya via Team Viewer.Where it says location of file, I replaced with:
None worked.Code:http://www.mysite.com/ and tried too: http://www.mysite.com/links.js
I placed the links.js in root of site.
You probably have some extension installed.It's not working in any browser but it shows only in chrome private browser, have any idea why is this?
![]()
re_link96 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:filepost.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link97 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:filepost.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
then added this
else if(re_link97.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link94, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
<script type="text/javascript" src="http://waz-warez.org/styles/waz-warez-light/template/livelinks.js"></script>
I spent ages adding images and styles so might aswell share it, like the orignal was.
I just need to learn js to reduce the bloated code now :D
newNode.innerHTML=text.replace(re_link94, '<a href="$1" target="_blank">$1</a>');
Cheers!