bbcode help needed

johan204

New Member
Hi all,

I want to make a custom bbcode for my vbulletin board.
The code is for an URL but the URL is like this:

Code:
<a href="javascript:adClick('sponsor.htm', 'target.htm');">
Where sponsor.htm is mandatory and target.htm is user submitted, so parsed with the code.

The javascript the href is calling is this:
Code:
function adClick(ad, site) {
window.open(ad);
window.location = site;
}
 
It's not parsing correctly...
He takes this: <a href="javascript correct, but then the rest will be the output...
 
Back
Top