i am trying to 'clone' an element and delete old, i want to do this because I have a z-index problem in IE and will do it using conditional comments:

<!--[if lte IE 7]>
<script type="text/javascript">
    $(document).ready(function() {
            var callCenter = $('#callCenter').html();
            alert(callCenter);
            $('#callCenter').remove();
            $('body').prepend("<div id='callCenter'>"+callCenter+"</div>");
    });
</script>
<![endif]-->

the problem is that the alert shows something like (without "" )

enter image description here

So the clasenames are kind of lost

<span class=clasname> instead of <span class="clasname">

-EDIT-

Trying with

    <!--[if lte IE 7]>
<script type="text/javascript">
    $(document).ready(function() {
            $('#callCenter').prependTo('body');
    });
</script>
<![endif]-->

is this a internet explorer thing?

link|improve this question

How are they lost? Looks like they're still there. – Dave Newton Sep 13 '11 at 12:24
1  
What's your problem? Move the alert() behind the remove() to see, whether var callCenter has the appropriate content. It doesn't matter if there are quotes around the attributes – the alert-box-contents are what MS IE makes out of the HTML while parsing it… – feeela Sep 13 '11 at 12:31
feedback

1 Answer

up vote 1 down vote accepted

This should work.

<!--[if lte IE 7]>
<script type="text/javascript">
    $(document).ready(function() {            
            var callCenter = $('#callCenter').remove().prependTo(document.body);
    });
</script>
<![endif]-->
link|improve this answer
I see so i need the remove() – Toni Michel Caubet Sep 13 '11 at 13:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.