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
Ranked #27.9K
~842 People Reached
Favorite Forums

5 Posted Topics

Member Avatar for phpl0v3r
Member Avatar for shadiadiph

Try giving your selections values and use the reset function like below [CODE]<html> <head> <script> function resetSelection() { var a = document.getElementById('emailsetting'); var b = a.length; for(var i = 0; i < b; i++) { if(a[i].value == 'private') { a[i].checked = true; }else { a[i].checked = false; } } } …

Member Avatar for kainil
0
174
Member Avatar for sajohnson05

Hey sajohnson05, First, you have an additional "p" in you div declaration after the "redone" [CODE]<div class = "redone"p id ="burgerForm">[/CODE] Second, give your form a name. Let's say [CODE]<form name="burger_order" action = "">[/CODE]. Then give your textarea a name - "total_order" [CODE]<textarea name="total_order">[/CODE]. In your functions file, remove the …

Member Avatar for kainil
0
138
Member Avatar for bhavik_thegame

If there is too much code for the whole program copy here the two divs and the validation so that we can look at the actual code. Also, why the second form() in the validation? [CODE]$("#form_id").validate();[/CODE] should do the trick. Check [URL="http://plugins.jquery.com/project/jqueryvalidate"]http://plugins.jquery.com/project/jqueryvalidate[/URL]. Otherwise I would also suggest that you've probably …

Member Avatar for kainil
0
220
Member Avatar for pareshverma91

Hi pareshverma91, You got some things mixed up. HTML DOM is a [I]Document Object Model[/I] which is actually a convention for interacting with HTML in an object oriented style. Ajax is [I]Asynchronous Javascript and XML[/I] and this is a name for a group of techniques used on the client side …

Member Avatar for kainil
0
182

The End.