Picture hidden when table reloaded by jQuery

Dear Experts,I have a div and table with a field image. I used jquery to reload table and div, it was successful
but the images are hidden. Please help.here is my code$(“#gmp_tbl_profile”).load(“TblProfileList #gmp_tbl_profile”);

You may Check HTTP Response and find out why the images are not loaded.

The CSS and attributes of the images have been remove.
When I reload or refresh page, it will be fine… but where jquery reload, the image are missing
How will I resolve it?

wincode2008 wrote:

The CSS and attributes of the images have been remove… >

For example?

I found out that after executing the jquery load command, it will duplicate the elementsBefore

$("#gmp_tbl_profile").load("TblProfileList #gmp_tbl_profile");

After

$("#gmp_tbl_profile").load("TblProfileList #gmp_tbl_profile");
$("#gmp_tbl_profile").load("TblProfileList #gmp_tbl_profile");

You may read jQuery .load() docs, see the Script Execution section.