[jQuery] Re: ajax returned data format

2009-09-24 Thread Flo
return an array too, with several identified chunks of data, it should be handy for me. By the way, do you know good links about constructing 'heavily ajaxed' applications, managing and formatting data ? I'll soon have to deal with this kind of project. But first JSON and arrays...

[jQuery] Re: Problem controlling links of appended html

2009-09-27 Thread Flo
Hello, You should try to launch your new jQuery behaviour in a separate function like this : ... { $("#main_area").append(""); behaviourOnNewElements(); } function behaviourOnNewElements() { $(".pics a").click(function(event){ return null;

[jQuery] Re: simple click drop down menu

2009-09-29 Thread Flo
for more fancy tricks... Good luck Flo On Sep 29, 2:26 pm, runrunforest wrote: > Hi, > > I need help to close the ul back up when i click on the white space or > on the options link. > > This is what i've got so far > > "http://www.w3.org/TR/xhtml1/DTD/x

[jQuery] Re: Show/hide effect div on mouseover

2009-10-04 Thread Flo
Hi, You can also do this using this plugin : http://plugins.jquery.com/files/jquery.event.hover.js.txt, which overloads the jQuery 'hover' event (just like hoverIntent, but it's smaller). Works fine, and you can tweak it. Flo

[jQuery] Re: appending to problem

2010-01-18 Thread Flo
Hi, same problem here. After a little rewrite, IE seems to understand this: var link = $("").appendTo($("head")); link.attr({ rel: "stylesheet", href: path }); Anybody knows any details why IE doesn't like the link-append in jQuery 1.4? On 15 Jan., 03:21, easyOne wrote: > I tried to app