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
~528 People Reached
Favorite Forums

3 Posted Topics

Member Avatar for bhavik_thegame

If you haven't resolved this problem on your own yet: Sounds like you have not properly attached the validation to the click event or are replacing it with another click event (maybe your field copy function?). There are really too many possible issues to speculate further... Seeing the code would …

Member Avatar for kainil
0
220
Member Avatar for misterrmac

I while back I added a little countdown timer for an action on our website which also plays a ticking and "ding" sound. I didn't have too much trouble getting it to work across all browsers...or at least I thought. I received a complaint from a visitor that they were …

Member Avatar for misterrmac
0
173
Member Avatar for JSHGROUP

Try this: Change this: [CODE] while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }[/CODE] to this [CODE] while (list ($key, $val) = each ($HTTP_POST_VARS)) { If($val != '') { $mailbody .= "$key : $val\n"; } }[/CODE] That if($val != '') is checking to see that …

Member Avatar for misterrmac
0
135

The End.