JQuery .load() function double id

JQuery .load() function double id

Hi,

When i use the load function on my first page (index.html):

$('#content').load('page1.html #content');


i got two divs on my page with the same id (id="content").

...
<div id="content">
        <div id="content">Content from page1.html</div>
</div>
...


How do i resolve this issue without a another div?

Thanks