[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread urlee net
Hello, I am starting a very new service: www.urlee.net www.urlee.net www.urlee.net And with Urlee.net you could create: www.yourname.urlee.net www.yourname.urlee.net www.yourname.urlee.net And it is for free, it is a FREE REDIRECTION SERVICE! Like CJB, you could change verylong.url to

[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread Nic Hubbard
Hey thanks! I should have realized that! Something so simple, yet caused big problems. I appreciate the help! On Oct 27, 1:04 am, BB <[EMAIL PROTECTED]> wrote: > You have to extend the defaults before you are doing something with > these: > > $.fn.testFrame = function(options) { >     var defa

[jQuery] Re: Plugin, passing user defined default selector not working

2008-10-27 Thread BB
You have to extend the defaults before you are doing something with these: $.fn.testFrame = function(options) { var defaults = { urlSuffix: '', iframe: 'body' }; options = $.extend(defaults, options); On 27 Oct, 07:57, Nic Hubbard <[EMAIL PROTECTED]> wrote: > I h