[jQuery] Re: Ajax callback parameter endless

2009-02-06 Thread Kpitn
rray in body of every function() > that has an "array" of arguments. > > > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Fri, Feb 6, 2009 at 7:12 PM, Kpitn wrote: > > > Hi > > > I have override the confirm function like this :

[jQuery] Ajax callback parameter endless

2009-02-06 Thread Kpitn
Hi I have override the confirm function like this : function confirm(msg,callback_true,callback_false) { if yes{ callback_true(); } else{ callback_false(); } } In my application i use the function like this : confirm('message',function(){ alert("ok")}, function (){ alert('not ok')}); I must ask

[jQuery] [plugins] [jcarousel] Add new item

2009-02-03 Thread Kpitn
Hi all, I'm trying to add new item on the fly with jcarousel. The function itemLoadCallback, didn't work to add item when you want. The plugin is build like this : $.fn.jcarousel = function(o) { return this.each(function() { new $jc(this, o); }); }; $.jca

[jQuery] Mouse Out with two divs

2008-12-04 Thread Kpitn
Hi, I have a two div with two id : many Contenet

[jQuery] the Return of "Validation Plugin - hows to only fire on form submit? "

2008-02-16 Thread Kpitn
Hi, I find an old post : http://groups.google.com/group/jquery-en/browse_thread/thread/cf34a35e202d9707/4fb5e88f4c81127a?lnk=gst&q=fire+submit# which use this method to show error only on sbumit : var validator = $("form").validate( { onblur: function(){}, onkeyup: function(el)