Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~109 People Reached
Favorite Forums
Favorite Tags
php x 2
Member Avatar for thebigpicture

I have a form with a hidden object: [CODE="HTML"]<input id="tracker" type="hidden" name="tracker" value="0" />[/CODE] The value is read with JavaScript and increased each time an element is added: [CODE="JavaScript"]var tracker = document.getElementById("tracker"); var tracked = parseFloat(tracker.value) + 1; tracker.value = tracked;[/CODE] This works fine while in HTML and JavaScript, but …

Member Avatar for thebigpicture
0
109