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:
Where sponsor.htm is mandatory and target.htm is user submitted, so parsed with the code.
The javascript the href is calling is this:
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');">
The javascript the href is calling is this:
Code:
function adClick(ad, site) {
window.open(ad);
window.location = site;
}