Results 1 to 2 of 2

Thread: Please help with Dynamic Ajax Content

  1. #1
    Join Date
    Apr 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Please help with Dynamic Ajax Content

    Hello the forum,

    At first thank you for this site and all these scripts.

    Please I need help wth Dynamic Ajax Content, someone can show me, if it's possible, how to do in order that when the page loads the first time, I have not the sentence « Choose a page to load », but rather the first item displayed ?

    Dynamic Ajax Content

    Code:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Ajax Rotating Includes Script</title>
    <script type="text/javascript">
    /***********************************************
    * Dynamic Ajax Content- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    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
    		}
    	}
    }
    function ajaxcombo(selectobjID, loadarea){
    	var selectobj=document.getElementById? document.getElementById(selectobjID) : ""
    	if (selectobj!="" && selectobj.options[selectobj.selectedIndex].value!="")
    	ajaxpage(selectobj.options[selectobj.selectedIndex].value, loadarea)
    	//if absolute path : ajaxpage(rootdomain+"/"+selectobj.options[selectobj.selectedIndex].value, loadarea)
    }
    </script>
    </head>
    <body>
    <div id="leftcolumn">
    <form>
    <select id="ajaxmenu" size="1" onChange="ajaxcombo('ajaxmenu', 'rightcolumn')">
    <option value="ajaxfiles/external.htm">Porsche Page</option>
    <option value="ajaxfiles/external2.htm">Ferrari Page</option>
    <option value="ajaxfiles/external3.htm">Aston Martin Page</option>
    </select>
    </form>
    </div>
    <div id="rightcolumn"><h3>Choose a page to load.</h3></div>
    <div style="clear: left; margin-bottom: 1em"></div>
    </body>
    </html>
    Thanks in advance, Kim.

  2. #2
    Join Date
    Apr 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hello,

    I have found a solution, just add this code in the head tag :

    Code:
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> 
    <script type="text/javascript">
    	$(document).ready(function(){
    		$('#rightcolumn').load('ajaxfiles/external.htm', '', function(response, status, xhr) {
    			if (status == 'error') {
    				var msg = "Sorry but there was an error: ";
    				$(".content").html(msg + xhr.status + " " + xhr.statusText);
    			}
    		});
    	});
    </script>
    Thanks for all, cordially.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •