I was trying to clean up some of the code on our website (in its current form, we would have to make 50 or so JS files and 50 or so PHP files for all of our offered products). I am looking at the code and it SHOULD be working, so I am confused as to where I screwed up. It doesn't seem like the Function is being called at all (I put an Alert at the top of it that never got called) so I assume I screwed up something in the first section.
<select class="gameserverselecion4" name="slots">
<option value="10|457">10 Slots - 9.90 / mo</option>
<option value="12|458">12 Slots - 11.88 / mo</option>
<option value="14|459">14 Slots - 13.86 / mo</option>
<option value="16|460">16 Slots - 15.84 / mo</option>
<option value="18|461">18 Slots - 17.82 / mo</option>
<option value="20|462">20 Slots - 19.80 / mo</option>
<option value="22|463">22 Slots - 21.78 / mo</option>
<option value="24|464">24 Slots - 23.76 / mo</option>
<option value="26|465">26 Slots - 25.74 / mo</option>
<option value="28|466">28 Slots - 27.72 / mo</option>
<option value="30|467">30 Slots - 29.70 / mo</option>
<option value="32468">32 Slots - 31.68 / mo</option>
</select>
</div>
<div id="inputTopRight">
<input type="button" name="submit" onclick="ProcessOrder('0','167','44');"/>
</div>
Then the Javascript...
function ProcessOrder(loc,pid,cfopID)
{
var values = document.dropTop.slots.value;
var valuesArray = values.split("|");
var slots = valuesArray[0];
var cfopValue = valuesArray[1];
alert("Slots is: " + slots " cfopValue is:" + cfopValue);
switch (slots)
{
case 10:
{
window.location = "https://www.xfactorservers.com/clients/cart.php?a=add&pid=" + pid + "&configoption[" + cfopID + "]=" + cfopValue;
}
case 12:
{
window.location = "https://www.xfactorservers.com/clients/cart.php?a=add&pid=" + pid + "&configoption[" + cfopID + "]=" + cfopValue;
}
ProcessOrderthan you're showing, because at the moment you haven't closed the function or the switch. – Skilldrick Feb 27 '11 at 12:17