thetylercox Posted June 27, 2012 Share Posted June 27, 2012 i am trying to create a checkbox limit based on a value changes! If the value of a checked checked box is different then the previous prompt an alert! Some of the check boxes do have the same value. Not all of them! example: I have the following checkbox! <input name="" type="checkbox" value="here">(if this was checked) <input name="" type="checkbox" value="here">(then this) <input name="" type="checkbox" value="there">(would not allow prompt alert) <input name="" type="checkbox" value="here">(would allow) my problem is in the if statement function setChecks(obj){d=document.getElementByclass(chk) If(d.value!=d.value) {obj.checked=false alert('you may only choose options from the same dist!') } something like this obviously this will not work but its where im at! So How do i store the previous checked checkbox value and compare it to the just checked box! Quote Link to comment https://forums.phpfreaks.com/topic/264886-how-to-get-previous-checked-checkbox-value-and-compare-to-newly-checked-box/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.