[jQuery] Re: Dynamic AJAX call on element show()/toggle()

2009-08-21 Thread Dhruva Sagar
Well there could be several solutions to what you wish to achieve. I'll give you one quick one that I can think of right now. create the div's with a particular class, say IP_click. and then do $('.IP_click').click(function(){ $(this).children('.IP').toggle().ajax(function(){ //call page here

[jQuery] Re: Dynamic AJAX call on element show()/toggle()

2009-08-21 Thread Wrenbjor
I want to be a little more clear. I don't want someone to write this for me, I want to understand the process on how to do it. I think it will rely on chaining events, so I think I need a better understanding on how to make that work. On Aug 20, 4:34 pm, Wrenbjor wrote: > ok I am using the table