[jQuery] Re: A job for you?

2009-07-15 Thread Geuintoo
I didn't got any answer. Mabe I was not clear: I look for a jQuery - Programmer, who I pay to devlope some code.

[jQuery] A job for you?

2009-07-14 Thread Geuintoo
Hy I am looking for a javascript - jQuery - plugin developper. Somebody who likes to develop clean and fast code. It is a project, where I need some "editable", "contextmenue" and "editor" code. If you are intrested, contact me. info aet ignaz doet ch

[jQuery] Re: Click-Event in Options/defaults

2009-05-15 Thread Geuintoo
This works, but is there no better way? $.each(opts.button, function(i, n){ var func = n.click; delete(n.click); var button = $('') .attr(n) .click(func); $("#rtfButtons").append(button); });

[jQuery] Re: Click-Event in Options/defaults

2009-05-15 Thread Geuintoo
"Keep in mind this recursively calls attr( key, value ) or attr ( key, fn ), so if one of the properties you are passing is a function, the function will be evaluated and not stored as the attribute itself." Question: The function should NOT will be evaluated... Any idea? Thanks!

[jQuery] Click-Event in Options/defaults

2009-05-15 Thread Geuintoo
Hy My jQuery-Plugin shoud produce two buttons with a onclick-event. Problem: The onclick-event got fired, when I call the plugin, without clicking on the button. Why got the click-event fired without clicking the button? Here my (shorted) plugin: (function($) { $.fn.rte = function(opt

[jQuery] Re: Learning about functions and methods (I am confused)

2009-04-08 Thread Geuintoo
Perfect, thanks!

[jQuery] Re: Learning about functions and methods (I am confused)

2009-04-08 Thread Geuintoo
But how to extend a sub method? // Extend sub method $.extend({ $.myPlugin = { myExtendedMethod: function(){ alert('Extended submethod called'); } } }); // Won't work: $.myPlugin.myExtendedMethod(); Thanks for any tipp!

[jQuery] Re: Learning about functions and methods (I am confused)

2009-04-07 Thread Geuintoo
Great, thank you!!

[jQuery] Learning about functions and methods (I am confused)

2009-04-07 Thread Geuintoo
Hy (function($){ $.myPlugin = function(){ holla: function(){ alert('holla'); } } $.myPlugin.hello = function(){ alert('hello von Plugin'); } })(jQuery); // Works finde: $.myPlugin.hello(); // It does not work.