[jQuery] Re: localScroll Problem

2008-02-12 Thread George GSGD
It would certainly help track down the problem if you listed which plugins you're using. Only thing I can see from what's been posted so far is that you've got "E.easing[...]". What're you using the E object for? It's telling you it can't find the easing function in E.easing On Feb 12, 12:49 pm,

[jQuery] Re: JQuery takes 80% of my core2Duo proc on DOM element inserts

2008-02-05 Thread George GSGD
I think it's generally proven that inserting dom objects is much slower than innerHTML, for the kind of inserting you're trying, that might be worth investigating... On Feb 4, 1:57 pm, Ashish <[EMAIL PROTECTED]> wrote: > Hi , > > I am very new to jquery. I am using jquery 1.2.2 . I use jquery > t

[jQuery] Re: Easing plugin and IE

2007-12-11 Thread George GSGD
Might be worth having a look at http://blog.viget.com/team-viget-under-the-hood/ for some help on how best to do this On Dec 10, 10:44 pm, "Jay Hankins" <[EMAIL PROTECTED]> wrote: > Using the easing plugin located athttp://gsgd.co.uk/sandbox/jquery/easing/, > I have set up a web site that uses

[jQuery] Re: jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")] is not a function

2007-11-09 Thread George GSGD
Can you give me some example code? Generally if there's a problem with callbacks it's a syntax error. On Nov 9, 7:39 am, Tóbi <[EMAIL PROTECTED]> wrote: > I think there is a bug. When I call the slideIn/Out function I get > errors as well, because when the function called then it call the > anima

[jQuery] Re: Dropdown list to auto populate input boxes

2007-11-06 Thread George GSGD
Is your alert working correctly? If you've managed to get the data properly, then I would suggest trying the val function instead of attr('value') If you give it an argument it will set the elements value to that argument eg: $("#charity_address").val(address); HTH George

[jQuery] Re: jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")] is not a function

2007-11-06 Thread George GSGD
Are you using an older version of my easing plugin? On Nov 5, 10:03 pm, Daemach <[EMAIL PROTECTED]> wrote: > After upgrading to jquery 1.2.1 I'm getting the error above on a > regular basis. Has anyone else seen this?

[jQuery] Re: Query for elements without a specific parent

2007-10-31 Thread George GSGD
You could use an adjacent selector: $('p+b') would work for your sample markup, but would need a bit of care depending on the real use situation. On Oct 31, 11:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello, > > Assume, I have the following HTML: > > Text1 > Text2 > > How can I

[jQuery] Re: Writing a plugin - tips needed

2007-10-16 Thread George GSGD
>From what I understand, jQuery.fn objects are for functions that add capabilites to a jQuery instance: jQuery.fn.myFunction = function() { ... } Would then allow you to do $('.myItem').myFunction(); There are some things you should ensure when using this approach (returning a jquery object for

[jQuery] Re: liScroll Plugin

2007-10-16 Thread George GSGD
Hi GC, It's not working properly for me (XP FF 2.0.0.7). The scrolling isn't smooth, it scrolls a bit and then stops and then scrolls again. I'm guessing it's because you're animating in sections and they're not quite joining up. It's a tricky thing to animate (I've done similar things pre-jQuery