![]() |
| Home Community Mys-Script Creative Off-Topic |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#9
|
||||
|
||||
|
In trying to do this myself, I've run across a lot of problems. How're your register and registerview pages set up now, in full?
Also, for the fun of it, this may interest you: Code:
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.11.1/jquery.validate.min.js"></script>
<script>
/* FORM VALIDATION */
$("#regform").validate( {
rules: {
username: { minlength: 2, maxlength: 20, required: true },
email: { required: true, email: true },
pass1: { minlength: 7, maxlength: 20, required: true },
pass2: { equalTo: "#pass1" } },
success: function(element) { $(element).text("OK!").closest("input") }
});
</script>
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| jQuery - Spiffing up your page where you can't edit the HTML! | Kyttias | Tutorials and Tips | 3 | 01-29-2014 07:09 PM |
| Jquery one weekend? | Tony | Other Chat | 0 | 07-30-2011 07:34 PM |
| Javascript/Jquery not being run. [Answered] | exactly33 | Questions and Supports | 5 | 12-23-2009 12:39 PM |
What's New? |
What's Hot? |
What's Popular? |