[jQuery] Re: Slow tabs

2008-04-12 Thread upandhigh
it's not problem of Jquery Tabs - their code is pretty good written and fast enough. the problem why your tabs is loading so long is long response of `post` function in file munchkin.js (line 55) if you will profile your page while switching tabs you will found that about 99% of time is taken by

[jQuery] Re: blockUI

2008-04-11 Thread upandhigh
checl also these demos, seems it's like what you are looking for BlockUI Plugin http://www.malsup.com/jquery/block/#demos On Apr 10, 5:07 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I have to implement this scenario: in a web page all the stuff > > contained in the web page must be blocke

[jQuery] Re: learning jquery

2008-04-11 Thread upandhigh
Read "JQuery in Action" book, you can found on main site links to it. it's really good and compact written and easy to understand. On Apr 11, 11:44 am, sebey <[EMAIL PROTECTED]> wrote: > what is the best way to learn jquery? quickly and easliy

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread upandhigh
but better to put them into on class $('.update_em').html(data.saida).show(); then you don't need container + you can put them into separate parts on the page On Apr 10, 3:16 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote: > Hi all. > > I have a response from Ajax call and I'll want to disp

[jQuery] Re: inner frames

2008-04-10 Thread upandhigh
it's not real. and it doesn't matter if you have this iframe from the start or you will add it later with js to your dom. you cannot change anything on other sites, even if this site is opening in iframe what is on your page, and the reason why is so clean like sunny day - because you could easily

[jQuery] Re: blockUI

2008-04-10 Thread upandhigh
your images must have bigger z-index, to be on the top of blocking layer and other content On Apr 10, 9:57 am, makkina <[EMAIL PROTECTED]> wrote: > Hi all, > > I have to implement this scenario: in a web page all the stuff > contained in the web page must be blocked and only the images should > b

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread upandhigh
why not to put both divs into one DIV container? $('#update_id div').html("test").show(); On Apr 10, 3:16 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote: > Hi all. > > I have a response from Ajax call and I'll want to display that in 2 > divs(header and footer in my form). Now I'm u