[jQuery] Re: getElementById with ajax

2009-01-31 Thread gmacgregor
On Jan 31, 12:55 pm, efet wrote: > When customer enters ReceiverPostalCode and ReceiverCountry on > index.asp, I want quotes immediately appear in index.asp. How do I do > this basing my codes on jQuery? Assuming ship.asp returns some kind of value, you simply make a Ajax request to ship.asp and

[jQuery] Re: 1.3 and toggle()

2009-01-31 Thread gmacgregor
On Jan 30, 7:08 pm, John Resig wrote: > It looks like you're trying to use a jQuery UI effect - maybe that's why? Thanks John. Forgive my ignorance, but how does jQuery know that you're calling the toggle() UI effect as opposed to the toggle() core effect? For example: // toggle UI $("p").click

[jQuery] 1.3 and toggle()

2009-01-30 Thread gmacgregor
Consider this markup: Foo Hello! Since upgrading to 1.3, this no longer works: $('div.holder h4').click(function() { $(this).toggleClass('close'); $(this).next('.bar').toggle("blind", {direction: "vertical"}, 600); return false; }); If I simply call $(this).next('.b