View Single Post
Old 04-24-2010, 11:28 AM  
dozey
Confirmed User
 
dozey's Avatar
 
Join Date: Nov 2004
Location: Moonland
Posts: 552
Code:
<a onclick="test({name:'Item Name', price:4.95});">click</a>

function test(item)
{
    alert(item.name + ': $' + item.price.toFixed(2));
}
dozey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote