/    Sign up×
Community /Pin to ProfileBookmark

URL that points to rotator script

Hello,

I need to know how to get my rotator to generate a single URL that will point to the following java script.

<script language=’Javascript’ src=”http://www.doctoradspace.com/ad.php?s=show&zoneid=x“>
</script>

note-zoneid=x would be a specific set of ads and would be a number.

Thank you,

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@konithomimoDec 16.2006 — Well, there are ways to access script objects and modify them, but the better way is to just create one dynamically:

function createScript(url) {
var s = document.createElement("script");
s.type = "text/javascript";
s.src = url;
document.getElementsByTagName("head")[0].appendChild(s);
}


Just send that function whatever URl you want the script tag to have and it will create the script object with the specified URL.
×

Success!

Help @joebrochin spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...