views:

1035

answers:

2

I have a jquery accordion that loads a lot of data. This accordion is generated by querying a database. My question - is there a way to not load the content until a specific element of the accordion has been clicked? Basically, I'd like to replicate the functionality of the jquery tab ajax content load to the accordion.

A: 

Can't you just bind a handler to the "change" event?

Pointy
+3  A: 

Check out this question and this blog entry, it might point you in the right direction.

fudgey