Hi,
I have this jQuery script:
$(content).find('data').each(function(){
// parsing some data
$(this).find('something').each(function(){
$(this).find('something new').each(function(){
// etc.
}};
});
});
...and I want to call function XYZ() after this script has finished.
This isn't working (it will call function XYZ() too early):
$(content).find('data').each(function(){
// parsing some data
}, XYZ());
Are there any solutions? Thank you.