[jQuery] Re: jTagEditor Custom Callback

2008-01-22 Thread Jay Salvat
Hi Everyone ! I'm the author of jTagEditor. Thanks Pauly for this great improvement. jTagEditor was an early draft of what i had in mind. I'm finishing a brand new version of jTagEditor now called MarkItUp with many level of callback and possibility to call the editor's features "from the outsid

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
and one last message from me, contradicting all the others... I've edited jquery.jtageditor.js and changed this if ($.isFunction(eval(button.callBack))){ eval(button.callBack).call(); to this if ($.isFunction(eval(button.callBack))){ eval(button.callBack).call( field ); the

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
there do seem to be a bundle of vars that would be available to your callback function based on what is available to the 'preview' callback var field = this; var $$ = $(field); var oId = $$.attr("id") |

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
I also had the same issue, it doesn't look like these things are available to the callback, does anyone know better? On Jan 14, 10:32 pm, bennybobw <[EMAIL PROTECTED]> wrote: > I'm trying to extend jTagEditor to add a image dialog with more fields > (source, title, height, width, etc.). The only