-
as seen on Stack Overflow
- Search for 'Stack Overflow'
</tr>
for ($i = 0; $i < $dm_numrec; $i++) {
?>
<tr>
<td width="266" height="28" valign="top">
<input type="text" name="recommend_to_name<?php echo $i;?>" />
</td>
<td height="28" valign="top">
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I am looking for a way to call successfully custom function from
submitHandler to do proper ajax post.
Here is my custom function:
jQuery.fn.submitWithAjax = function() {
this.submit(function() {
$.post(this.action, $(this).serialize(), null, "script");
return false;
})
return this;
};
Before…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am having some issues with a jQuery form validation pluggin. Below is the code which executes on document.ready()
$("#register").validate({
rules: {
usernameREG: {
required: true,
remote: "PHP/checkUsr.php",
minlength: 4}
fnameREG: {
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I am looking for a way to call successfully custom function from
submitHandler to do proper ajax post.
Here is my custom function:
jQuery.fn.submitWithAjax = function() {
this.submit(function() {
$.post(this.action, $(this).serialize(), null, "script");
return false;
})
return this;
};
Before…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Dear Masters!
I have little snippet for validatin' my form. I need help to position the error messages, because now all message appear in the filed, so the user can't see it, and so its very annoying.
$(document).ready(function() {
jQuery.validator.addMethod("lettersonly", function(value, element)…
>>> More