I Have a table in my html page, it's be default not shown on my page... but when a user click on something in the page it appear i want to wrap the table with a div container, i used the following for doing that : \[code\]jQuery(document).ready(function($) {$('table').wrap('<div id="table" />'); });\[/code\]but it still doesn't wrap the table when it appear.. it think the problem that i used the dom ready, how can make the div to wrap the table when it appear on my page thanks