Jump to content

How to embed airline map or live map in HTML website


reivax

Recommended Posts

i found some information at other forum, but its really hard to understand, maybe you guys can. By the way thanks for the help.

!--Insert into the layout.php file first before calling any outside scripting 
Below initializes the call functions.This also MUST be in between the 
<head>HERE</head>. NOT the <body> See below for calling your outside pages.-->
  

<!-- start call outside scripts-html etc pages-->
<script type="text/javascript">
var rootdomain="http://"+window.location.hostname

function ajaxinclude(url) {
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.open('GET', url, false) //get page synchronously 
page_request.send(null)
writecontent(page_request)
}

function writecontent(page_request){
if (window.location.href.indexOf("http")==-1 || page_request.status==200)
document.write(page_request.responseText)
}

</script>

<!-- end of call outside scripts initializing coding. For the <head> area, by Jungle--> 

<!--/==============================================================================<body tag>/-->  
  
<!--How to call your pages ! Place in <body> only, anywhere you feel it functions good.
Do not enter a named domain, the (rootdomain makes the script call, just add the
folders as example below-->

EXAMPLE::::
<script type="text/javascript">
ajaxinclude(rootdomain+"/myphpvms-va/core/pages/mymenu.html")  <!--you can call anything!-->
</script>  
  

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...