Hi, Im new to javascript and this forum and was wondering if someone could help with this issue;
This is the html/php element (within a form called orderForm)
All I'm wanting to do is to add up the total of the selected game checkboxes. I find JS quite tricky to get my head around. So far I have this (don't laugh);HTML Code:echo "\t<div class='item'> <span class=gameTitle>{$book[gameTitle]}</span> <span class='relYear'>{$book['relYear']}</span> <span class='genDesc'>{$book['genDesc']}</span> <span class=’price’>{$book['price']}</span> <span class='chosen'><input type='checkbox' name='game[]' value='{$game['gameID']}' title='{$game['price']} id='price' /></span> </div>\n";
function totalPrice(price)
{
var money = document.orderForm.price.title;
var working = 0;
var total = 0;
if (price.checked)
{
money+working
}
document.write
}
I've been at this for hours and haven't made any head way, any ideas are welcomed!


Reply With Quote

Bookmarks