[jQuery] How to animate opacity on Internet Explorer

2009-02-25 Thread fambi
Using animate({opacity:}) jQuery provides an excellent way of fading elements in and out of view. However, opacity does not work on IE (which demands the use of silly filters). With that in mind, how do we animate the opacity of an element in IE? Thanks

[jQuery] What can we use in place of $.browser?

2009-02-25 Thread fambi
Having just upgraded to 1.3.2, I've realised that the $.browser utility has been deprecated. Does this mean it is no longer possible to identify which browser is being used?

[jQuery] Re: How can executable jquery/jscript be returned in an Ajax response

2008-12-19 Thread fambi
(){  ... }) Or use the LiveQuery plugin, then you can register handlers only once for all similar elements (http://brandonaaron.net/jquery/plugins/ livequery) - ricardo On Dec 19, 3:36 am, fambi fambizz...@tm4b.com wrote: Let's say filling a form should add a row to a table. Responding with the html

[jQuery] Event listener optimisation advice

2008-12-18 Thread fambi
Hi All, Is there some kind of performance cost in setting up lots of event listeners? For example, rather than setting up lots of click event listeners, would it be better to set up a single one which then uses if/else to decide how to process it? Obviously, it might not always be practical,

[jQuery] How can executable jquery/jscript be returned in an Ajax response

2008-12-18 Thread fambi
Let's say filling a form should add a row to a table. Responding with the html row is not a problem, but how do you include the event to add the row and any listeners which might follow after it? Thanks

[jQuery] Can you recommend a drag drop tree-view script?

2008-11-13 Thread fambi
Hi all, I need a drag drop treeview script which uses ajax to save its structure to a mysql database. Does it exist and can anyone recommend it? Thanks

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-22 Thread fambi
] On Behalf Of Richard D. Worth Sent: Saturday, July 19, 2008 3:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Uncompressed, Minified and Gzipped and Packed On Sat, Jul 19, 2008 at 12:55 AM, fambi [EMAIL PROTECTED] wrote: 1. How is browser support for un-gzipping javascript (and css

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-19 Thread fambi
1. How is browser support for un-gzipping javascript (and css for that matter)? I heard, once upon a time, that there were issues... is that once upon a time? 2. Also, Richard, what do you mean by If you don't want to worry about ***correctly** gzipping your source files? Thanks On

[jQuery] Re: Quickie: Knowing if a scroll bar is there or not.

2008-07-15 Thread fambi
Swedbergwww.englishrules.comwww.learningjquery.com On Jul 14, 2008, at 12:03 PM, fambi wrote: Hi all. Assuming a div has overflow: auto, how can I know whether the scroll bar is showing or not? Thanks

[jQuery] Quickie: Knowing if a scroll bar is there or not.

2008-07-14 Thread fambi
Hi all. Assuming a div has overflow: auto, how can I know whether the scroll bar is showing or not? Thanks

[jQuery] Re: How to know when you can't scroll any further

2008-07-12 Thread fambi
== $(element).scrollHeight;) { //do something } }); Untested, but should work. On Jul 10, 9:18 am, fambi [EMAIL PROTECTED] wrote: Thanking you guys in advance for any help/advice... How can I know that I've reached the bottom of a scrollable area in a div with an overflow

[jQuery] How to know when you can't scroll any further

2008-07-10 Thread fambi
Thanking you guys in advance for any help/advice... How can I know that I've reached the bottom of a scrollable area in a div with an overflow? Thanks

[jQuery] Replicating frame interface with jquery?

2008-07-02 Thread fambi
We're looking to replicate the traditional email client interface without using frames, much the same way that Yahoo Mail beta has done. Has anyone written a plugin or tutorial for this? If not, can anyone give me a rough idea of how the resizing part of it all works? Thanks

[jQuery] Animating table rows produce *very* strange results. Any work around?

2008-06-22 Thread fambi
Hi all, I'm having serious problems trying to animate a table row and have tried loads of work arounds In short, I'm trying to do a self healing transation following the deletion of table content using an Ajax call. So, after the user presses delete, the row shrinks in height and is then

[jQuery] Finding all inputs with name X?

2008-06-20 Thread fambi
How can we find all inputs with name X? Thanks

[jQuery] Re: Finding all inputs with name X?

2008-06-20 Thread fambi
Sorry, please ignore this. I was looking in the wrong places... i found the answer. On Jun 20, 8:56 pm, fambi [EMAIL PROTECTED] wrote: How can we find all inputs with name X? Thanks

[jQuery] Re: Does jquery's ajax method's identify requests as being ajaxed

2008-06-19 Thread fambi
or not. On Wed, Jun 18, 2008 at 9:21 AM, fambi [EMAIL PROTECTED] wrote: What I mean to say is, do the native jquery ajax methods append any parameters that can inform our server side scripts that the request was submitted using ajax? (e.g. ajax=1) If not, what could be done to implement this so

[jQuery] Does jquery's ajax method's identify requests as being ajaxed

2008-06-18 Thread fambi
What I mean to say is, do the native jquery ajax methods append any parameters that can inform our server side scripts that the request was submitted using ajax? (e.g. ajax=1) If not, what could be done to implement this so that we don't need to repeat ourselves on each and every form? Thanks

[jQuery] Difficult to describe issue relating to selects!!!

2008-06-15 Thread fambi
We nest our form inputs into unordered lists and use jquery to highlight the parent list item of the active input: $(function() { $(ul.form).find(input,select,textarea,option,.file) .focus ( function() {

[jQuery] Re: Delaying remaining actions until animation is complete

2008-06-09 Thread fambi
Thanks. I wish the documentation was clearer! On Jun 8, 8:18 pm, Michael Geary [EMAIL PROTECTED] wrote: Use the completion callback: $this.animate({opacity: 0.5}, { complete: function() { Action 1 Action 2 Action 3 $this.animate({opacity: 1.5}); }}); -Mike We have a

[jQuery] Delaying remaining actions until animation is complete

2008-06-08 Thread fambi
We have a string of actions which run on a click event, but before they run, we want to animate down the opacity of certain elements to show the user that something is happening and then animated the opacity back to normal to show that the process is finished: $this.animate({opacity: 0.5});

[jQuery] Re: Animate() background colours

2008-05-29 Thread fambi
, fambi [EMAIL PROTECTED] wrote: It looks like animate() doesn't take too well to background colours. Does anyone know a way of animating an objects colour from one to another? -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: Animate() background colours

2008-05-29 Thread fambi
On Wed, May 28, 2008 at 6:45 PM, fambi [EMAIL PROTECTED] wrote: It looks like animate() doesn't take too well to background colours. Does anyone know a way of animating an objects colour from one to another? -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Animate() background colours

2008-05-28 Thread fambi
It looks like animate() doesn't take too well to background colours. Does anyone know a way of animating an objects colour from one to another?

[jQuery] Achieving smoother animate()

2008-05-23 Thread fambi
We've recently implement an option in which our site's users can hide and show the left hand menu to make more space for the main content when necessary (e.g. huge tables). We've done this through the following code: $(#ScreenChange).toggle( function() {