Me again..
My server will send several batches of data for Listbox to show on front page.
It means one batch corresponds to one Listbox.
After one batch was showed on page, if another batch came, I should remove the old one and print a new Listbox on page.
In this case, I use $("#listbox").empty();
before any $('#listbox').jqxListBox()
And the weird thing is that the second batch of data doesn’t show Listbox on page, it do remove the old one, so it appears blank..
I’ve checked that after empty() function, the listbox div still remains alive.
Any suggestion you can give me? Thanks..