[jQuery] Re: Change all CSS background images url

2009-11-19 Thread nomen
ng will stay relative. > > Therefore, having the path as "img" (or whatever the relative path to > that folder is) should work, no ? > > Liam > > nomen wrote: > > Hi all: > > >     I have a website. All my images are in "/img" directory. &g

[jQuery] Re: Change all CSS background images url

2009-11-16 Thread nomen
TAGS/tag_base.asp > > Hope it helps. > > Michel Belleville > > 2009/11/16 nomen > > > Hi all: > > >    I have a website. All my images are in "/img" directory. > >    Now, my client needs to put the site in a subdirectory, so, my > > image

[jQuery] Change all CSS background images url

2009-11-16 Thread nomen
Hi all: I have a website. All my images are in "/img" directory. Now, my client needs to put the site in a subdirectory, so, my images are now in "/subdir/img". In the future, maybe we have to change the site to another subdirectory. I don´t want to change all my CSS anytime the cl

[jQuery] Firefox problem on ajax loaded javascript

2009-11-02 Thread nomen
Hi all: I have a simple page. Clicking in a button it loads a content by Ajax to the page, let's call to it "subpage". In "subpage" I have some HTML(some select lists) and a jquery code in "$(document).ready(function(){...". The javascript code launches another js ( http://www.yxscripts.c

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-22 Thread nomen
Hi Mike: Finally I changed the calls to asynchronous. It looks good now. Thanks for your help. On 16 sep, 10:16, nomen wrote: > Hi Mike: >   Thank you for your answer. >    I have understand what do you mean between "lock the browser" and > "block th UI&quo

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-16 Thread nomen
Hi Mike: Thank you for your answer. I have understand what do you mean between "lock the browser" and "block th UI". To test it I have put a sleep in my server (in the function that calls the synchronous ajax call ) and I have see that in IE7 and IE8, it´s true, but, in FF3, Opera 10, Chro

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-16 Thread nomen
Hi Mike: Thank you for your answer. I have understand what do you mean between "lock the browser" and "block th UI". To test it I have put a sleep in my server (in the function that calls the synchronous ajax call ) and I have see that in IE7 and IE8, it´s true, but, in FF3, Opera 10, Chro

[jQuery] Blocking UI for synchronous ajax calls

2009-09-15 Thread nomen
Hi all: I´m writing a simple CMS and, when the user clicks to save the changes, I need to: 1) See if the user is logged (if I´m not logged redirect to login form) 2) Get some info from the server (if the content is new I need to ask some questions, ...) 3) Save the con

[jQuery] Re: Getting "too much recursion" y FF3 and "out of memory" on IE7.

2009-06-08 Thread nomen
in > current = index + 1; > // if current > max set current as 0 > if(current > images.length) { >     current = 0;} > > // fade out old > images.eq(index).fadeOut(speed); > // fade in new while old is fading out > images.eq(current).fadeIn(speed); > // recall th

[jQuery] Getting "too much recursion" y FF3 and "out of memory" on IE7.

2009-06-05 Thread nomen
Hi all: I have develop this javascript code ( http://www.phpriot.com/2237 ). This is a simple carrousel. I´m using JQuery 1.3.2. In the code you can see an array with images and the code is simply changing the source of the img with the ID "carruselimg". I´m getting "too much recurs

[jQuery] Re: Handling $.get answer

2008-10-09 Thread nomen
NODE ]} , >       function (data) { >            if (data == 1) { >                   // Do something if true >            } else { >                   // Do something if false >            } > ); > > On Oct 9, 6:49 am, nomen <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Handling $.get answer

2008-10-09 Thread nomen
NODE ]} , >       function (data) { >            if (data == 1) { >                   // Do something if true >            } else { >                   // Do something if false >            } > ); > > On Oct 9, 6:49 am, nomen <[EMAIL PROTECTED]> wrote:

[jQuery] Handling $.get answer

2008-10-09 Thread nomen
Hi all: I´m new to JQuery, so maybe i´m doing something badly. I have a previously defined javascript tree, i´m rewriting the code to use ajax. This tree has a function beforedelete: function(node) If this function returns false, no node will be deleted in user interface. If sen