[jQuery] IE: load()-related memory leak?

2007-11-22 Thread Sagari
Greetings, I am using jQuery in AJAX-based Web-application that uses load() to update contents of (a part of) a Web page, through sequences like $(#pagepart).empty(); $(#pagepart).load(url, {}, afterload); The problem is that in IE a strange problem was detected: every time the above sequence

[jQuery] Re: Suggest a plugin for slider-like construction

2007-11-20 Thread Sagari
3:49 AM, Sagari [EMAIL PROTECTED] wrote: Greetings, Could you please suggest a plug-in to create the following slider-like construction: - two vertical areas of content - a vertical control (narrow rectangular area) separating the two content areas - when dragging control left

[jQuery] Suggest a plugin for slider-like construction

2007-11-19 Thread Sagari
Greetings, Could you please suggest a plug-in to create the following slider-like construction: - two vertical areas of content - a vertical control (narrow rectangular area) separating the two content areas - when dragging control left or right, the result is the two content area are resized

[jQuery] Re: Lookup doesn't work within HTML loaded with .load()

2007-10-25 Thread Sagari
Thank you Danny, it escaped my mind that the load() can return prior to DOM structure is updated. It works OK now that I use the synchronous version. On 26 окт, 05:58, Danny Wachsstock [EMAIL PROTECTED] wrote: .load is asynchronous, which means that it returns (and the next statement is

[jQuery] Re: How to add content here?

2007-08-30 Thread Sagari
Thanks, Karl! Methinks, this is the best method. On 29 авг, 21:23, Karl Swedberg [EMAIL PROTECTED] wrote: On Aug 28, 2007, at 11:12 PM, Sagari wrote: Greetings, The task: to add content (HTML) exactly at the place where script was placed, i.e. how do I get the parent of a scrirpt

[jQuery] How to detect jQuery presence and include it on-the-fly?

2007-08-30 Thread Sagari
Greetings, The task: include jQuery source on the fly in case it's not loaded. The script is included on a third-party page and it's not possible to guarantee the jQuery is already loaded. What is the simplest way to do that? Thanks! All the best, Konstantin

[jQuery] How to detect jQuery presence and include it on-the-fly?

2007-08-30 Thread Sagari
Greetings, The task: include jQuery source on the fly in case it's not loaded. The script is included on a third-party page and it's not possible to guarantee the jQuery is already loaded. What is the simplest way to do that? Thanks! All the best, Konstantin

[jQuery] Re: How to add content here?

2007-08-30 Thread Sagari
= $('script:last'); $(function() { $(script).after( 'Hello World' ); }); })(); /script } But I'm curious: Why can't you use document.write? -Mike From: Sagari The task: to add content (HTML) exactly at the place where

[jQuery] Possible jQuery versions conflict

2007-07-31 Thread Sagari
Greetings, The task: to insert a DOM-style JS code using jQuery into a thrid- party page. Example: code snippets used to generate AdSense blocks. This will require a user to include a jQuery source (directly or indirectly - either the user includes it, or my code snippet does). The problem: if