can't jQuery 3d party dialog to do what i want :)
Posted
by ropstah
on Stack Overflow
See other posts from Stack Overflow
or by ropstah
Published on 2010-04-28T23:42:19Z
Indexed on
2010/04/28
23:47 UTC
Read the original article
Hit count: 341
i'm using NyroModal, a 3rd party jQuery based dialog script. According to these settings, I should be able to do this:
$.nyroModalManual({
type : 'ajax',
url : '/url',
'ajax' : {
url : '/url',
data : 'somedata=1'
}
});
However I receive an error "$.ajax() is not defined". How could this be?
p.s.
If I run console.debug($.ajax())
right before the nyroModalManual
part, it shows the XMLHTTPObject nicely, so I'm probably doing something wrong in the settings... I just need to be able to pass data
.
© Stack Overflow or respective owner