.get and content not inheriting its parent div.
I'm using jquerys $.get function to insert external php files into my current page with the .html function. The problem is the div tags inside the php file aren't inheriting the width of the div im inserting them into and using the page width instead. Is there a way to force them to inherit their 'new' parents width without using .width() to give them a fixed width?
jquery code:
- $.get(url, function(data) {
$('#col3_tabs').html(data);
});
#col3_tabs is set to a % width.