[jQuery] load() render issues
I'm getting inconsistent rendering of the html pulled form another
page using load().
Here is the code:
var root_url = window.location.href;
var load_url = $('.tabs-navigation ul li:eq(0) a').attr('href');
$(".tabs-content .overview").load(root_url+load_url+' .entry *');
Safari 3 is adding an extra in the output.
FF2 is self closing <div>s and extracting <a>s from
elements and
placing them on there own line.
When I check the response in FireBug's console the html is being
retrieved intact.
I'm using WordPress (not sure if this is a contributing factor) for
the CMS.
Any help is appreciated.