[jQuery] Re: fadeOut Callback Trigger Count

2009-04-20 Thread blockedmind
    $("p").append("Page loaded. "); > > }); > > This will only append "Executed." for the last sibling in the group.   > ($sibs.index(this) == $sibs.length-1). > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-19 Thread blockedmind
if we have something to look at. > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Apr 19, 2009, at 7:22 AM, blockedmind wrote: > > > > > Hmmm... > > > On Apr 18, 2:28 am, blockedmind wrote: > >> Nothing? >

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-19 Thread blockedmind
Hmmm... On Apr 18, 2:28 am, blockedmind wrote: > Nothing? > > On Apr 17, 8:46 pm, blockedmind wrote: > > > This problem occurs when $("#menu li a").fadeOut(function() {}); being > > used. callback function is called 3 times 'cos there is 3 li elements

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-17 Thread blockedmind
Nothing? On Apr 17, 8:46 pm, blockedmind wrote: > This problem occurs when $("#menu li a").fadeOut(function() {}); being > used. callback function is called 3 times 'cos there is 3 li elements. > > On Apr 17, 7:28 pm, blockedmind wrote: > > > Callback fu

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-17 Thread blockedmind
This problem occurs when $("#menu li a").fadeOut(function() {}); being used. callback function is called 3 times 'cos there is 3 li elements. On Apr 17, 7:28 pm, blockedmind wrote: > Callback function of fadeOut effect is executed once for each element > animated against. I

[jQuery] fadeOut Callback Trigger Count

2009-04-17 Thread blockedmind
Callback function of fadeOut effect is executed once for each element animated against. Is it possible to make it executed once after all elements faded?

[jQuery] Re: Looping JSON Data

2009-01-23 Thread blockedmind
well, i tried some options more... it turns out when i set ajax data type to "text" and convert it to json object using json.parser() it works just fine. ok then its solved but i should be able to pass data as a json object between two functions, right? On Jan 23, 4:24 pm, blockedm

[jQuery] Re: Looping JSON Data

2009-01-23 Thread blockedmind
;owner":"1","active":"1","featured":"0","machinename":"testing"}, > > {"id":"16","name":"Testing","description":"test","owner":"1","

[jQuery] Looping JSON Data

2009-01-21 Thread blockedmind
I have data recieved by ajax function of jquery like: {"list":[ {"id":"17","name":"Testing","description":"test","owner":"1","active":"1","featured":"0","machinename":"testing"}, {"id":"16","name":"Another List","description":"Another","owner":"1","active":"1","featured":"0","machinename":"another

[jQuery] Re: Case Insentitive Selectorys

2008-09-25 Thread blockedmind
eating-a-custom-jquery-selector/ > > It sounds like writing a custom selector might be your best bet. You > should be able to do an exact, contains, and starts-with search, > depending on your needs. > > -Eric > > On Sep 23, 7:51 am, blockedmind <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Case Insentitive Selectorys

2008-09-23 Thread blockedmind
trying to do. Maybe just return your xml > > such that it's already been converted to lower case, then just do what you > > were doing before except use search.toLowerCase() instead of just search. > > > Hope it helps. > > > --Erik > > &g

[jQuery] Re: Case Insentitive Selectorys

2008-09-22 Thread blockedmind
Nothing? On Sep 20, 5:22 pm, blockedmind <[EMAIL PROTECTED]> wrote: > I am making search in an xml file, but I don't get expected results > since jQuery selectors arecase-sensitive. I use something like > > $(returnedXml).find("item[name*='"+search+"&#

[jQuery] Case Insentitive Selectorys

2008-09-20 Thread blockedmind
I am making search in an xml file, but I don't get expected results since jQuery selectors are case-sensitive. I use something like $(returnedXml).find("item[name*='"+search+"']").each(function(){ }); How to make it INCASE-SENSITIVE?