/    Sign up×
Community /Pin to ProfileBookmark

Help with External File

can someon help me with this? I have an external *.js file and need the below inserted into the *.js file so that I can just run the whole thing with
<script language=”javascript” src=”*.js”></script>


_______________________________________________________

<div id=”leftcolumn”>
<a href=”javascript:ajaxpage(‘video.cfm’, ‘rightcolumn’);”>test</a>
</div><div id=”rightcolumn”></div>


_______________________________________________________

HERE is my JS File:


_______________________________________________________

var loadedobjects=””
var rootdomain=”http://”+window.location.hostname

function ajaxpage(url, containerid){
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject(“Msxml2.XMLHTTP”)
}
catch (e){
try{
page_request = new ActiveXObject(“Microsoft.XMLHTTP”)

}
catch (e){}
}
}
else
return false
page_request.onreadystatechange=function(){
loadpage(page_request, containerid)
}
page_request.open(‘GET’, url, true)
page_request.send(null)
}

function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf(“http”)==-1))
document.getElementById(containerid).innerHTML=page_request.responseText
}

function loadobjs(){
if (!document.getElementById)
return
for (i=0; i<arguments.length; i++){
var file=arguments[i]
var fileref=””
if (loadedobjects.indexOf(file)==-1){ //Check to see if this object has not already been added to page before proceeding
if (file.indexOf(“.js”)!=-1){ //If object is a js file
fileref=document.createElement(‘script’)
fileref.setAttribute(“type”,”text/javascript”);
fileref.setAttribute(“src”, file);
}
else if (file.indexOf(“.css”)!=-1){ //If object is a css file
fileref=document.createElement(“link”)
fileref.setAttribute(“rel”, “stylesheet”);
fileref.setAttribute(“type”, “text/css”);
fileref.setAttribute(“href”, file);
}
}
if (fileref!=””){
document.getElementsByTagName(“head”).item(0).appendChild(fileref)
loadedobjects+=file+” ” //Remember this object as being already added to page
}
}
}

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@NatdripJun 08.2006 — <script language="javascript" src="*.js"></script>

<script language="javascript" src="*
.js"></script>

on an html page

should work.

just make sure you call the dependant file last.
Copy linkTweet thisAlerts:
@arashtechauthorJun 08.2006 — I understand that, but how do I get

<div id="leftcolumn">

<a href="javascript:ajaxpage('video.cfm', 'rightcolumn');">test</a>

</div><div id="rightcolumn"></div>

as javascript into my current JS library?

the one I've posted so it run automatically, without the HREF tag.. in other words all I need to do is load the <script scr="whatever"></script> and I will have that JS load ...

Thank you.
×

Success!

Help @arashtech 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.19,
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: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

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