[jQuery] Re: Can it be done? (Modifying plugin parameters at runtime)

2007-04-23 Thread Sean Catchpole
Hello Simon, Yes, your onResize function can change the values of maxWidth. Here is an example: $('#resizeMe').Resizable( { minWidth: 50, minHeight: 50, maxWidth: 400, maxHeight: 400, // etc. etc.

[jQuery] Re: Can it be done? (Modifying plugin parameters at runtime)

2007-04-23 Thread skimber
Hi Sean, Thanks for that... I'd tried that and it didn't work... however i worked it backwards and found a handy little function that outputs the content of an object and found what I was looking for... I actually had to refer to them via: this.resizeOptions.maxHeight So I guess I'll have