How can I remove the animation from this jQuery modal window? You can see the example of the plugin here:
+1
A:
IMHO you should delete this:
.animate({ // Set the width
width: settings.width+'px',
marginLeft: (settings.marginLeft)+'px',
opacity: 0.5
}, {duration: 350})
.animate({ // Set the height
height: settings.height+'px',
marginTop: (settings.marginTop)+'px',
opacity: 1
}, {complete: callback, duration: 350});
Rin
2009-09-04 15:15:57