Jump to content

Trouble passing variable into asyncronous function


rayfinkel2

Recommended Posts

Hi,

 

I am doing some AJAX and am having trouble passing the variable setNumber into function "colorStateChanged". If anyone has any ideas, I would appreciate it.

 

 

function sizeGetColor(selectedSize,currentColor,prodID,setNumber)

{

var url="http://estrategize.mailwebsol.com/Yandy/setOptionAjax.php?prodID=" + prodID + "&size=" + selectedSize + "&action=sizeGetColor&currentColor=" + currentColor + "&setNumber=" + setNumber;

xmlHttp=GetXmlHttpObject(colorStateChanged)

xmlHttp.open("GET", url , true)

xmlHttp.send(null)

}

 

function colorStateChanged()

{

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")

{

var prodColorName = "prodColor" + setNumber;

document.getElementById(prodColorName).innerHTML = xmlHttp.responseText;

}

}

 

 

function GetXmlHttpObject(handler)

{

var objXmlHttp=null

 

if (navigator.userAgent.indexOf("Safari")>=0)

{

objXmlHttp=new XMLHttpRequest()

objXmlHttp.onload=handler

objXmlHttp.onerror=handler

return objXmlHttp

}

if (navigator.userAgent.indexOf("Opera")>=0)

{

objXmlHttp=new XMLHttpRequest()

objXmlHttp.onload=handler

objXmlHttp.onerror=handler

return objXmlHttp

}

if (navigator.userAgent.indexOf("MSIE")>=0)

{

var strName="Msxml2.XMLHTTP"

if (navigator.appVersion.indexOf("MSIE 5.5")>=0)

{

strName="Microsoft.XMLHTTP"

}

try

{

objXmlHttp=new ActiveXObject(strName)

objXmlHttp.onreadystatechange=handler

return objXmlHttp

}

catch(e)

{

alert("Error. Scripting for ActiveX might be disabled")

return

}

}

 

if (navigator.userAgent.indexOf("Mozilla")>=0)

{

objXmlHttp=new XMLHttpRequest()

objXmlHttp.onload=handler

objXmlHttp.onerror=handler

return objXmlHttp

}

}

 

Link to comment
Share on other sites

Well, I got the first part figured out, but now I can't get the getElementByID to use the variable I created.  This is what I have:

 

function sizeGetColor(selectedSize,currentColor,prodID,setNumber)

{

var url="http://estrategize.mailwebsol.com/Yandy/setOptionAjax.php?prodID=" + prodID + "&size=" + selectedSize + "&action=sizeGetColor&currentColor=" + currentColor + "&setNumber=" + setNumber;

number=setNumber

xmlHttp=GetXmlHttpObject(colorStateChanged)

xmlHttp.open("GET", url , true)

xmlHttp.send(null)

}

 

function colorStateChanged()

{

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")

{

var prodColorName="prodColor"+number;

document.getElementById(prodColorName).innerHTML = xmlHttp.responseText;

}

}

 

It always tries to getElementById with the word prodColorName instead of the Variable created Above.

 

Any Suggestions?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.