Hi,
I'm using accordion with chain,js plugin .
I populated some data into accordion via ajax call .
The problem is when each time the script populate some data, the
accordion seems not working, so I put the accordion in the ajax
success as sample below and it works
$.ajax ({
type: "GET",
cache: false,
url: "app/supplier/DBOne.php",
data: {srch: srch},
dataType: 'json',
success: function (d) {
$("#dialogInner").item(d).chain();
$("#accordion").accordion({fillSpace:true});
}
});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---