Hey Lasthaai,
I suffered the same issue and realised what was going on. Given that $
(this) is bound back to this function in which it currently resides,
affectively causes an infinite loop. Here is a way around this issue,
while still using the jquery forum plugin:
$(function() {
for (var i
> Thanks Mike that did the trick. I want to ask a noob question about
> the significance of the $ in front of the form variable that you
> suggest. What is the difference besides using just form or set as that
> variable name without a $ preceding it?
No difference. It just helps me remember
Thanks Mike that did the trick. I want to ask a noob question about
the significance of the $ in front of the form variable that you
suggest. What is the difference besides using just form or set as that
variable name without a $ preceding it?
On Apr 8, 10:55 am, "Mike Alsup" <[EMAIL PROTECTED]>
> $(function() {
> var _options = {
> target: $( this ),
> beforeSubmit: function(data, set, options) {
> alert( $(set).attr( 'action' ) );
> }
> }
> $( '.form' ).ajaxForm( _options );
> });
>
>
> I've also tried using just the 'this' keyword. Anywa
4 matches
Mail list logo