I have:

<div class="result">
  <div class="child">
    <h2>afsdf</h2>
    <p>ardyh</p>
  </div>
  <div class="child">
    <h2>....
  ..
  </div>
</div>

and want to replace all in .result with

<p>please wait..</p>

$x('.result').html('remove') does nothing and no method of .html removes the children.

How to to it?

regards, /t

link|improve this question

Shouldn't it be x$ and not $x? Have you gotten anything to work? Are there errors on the console? – James Montagne Nov 2 '11 at 13:49
xuijs doesn't have anything to do with jQuery. – Blazemonger Nov 2 '11 at 13:54
yes, that's a typo. ok in original code. Much works, no errors in firebug. – user247245 Nov 2 '11 at 13:57
@mblase75, you're right, xuijs didn't even exist as a tag so.. – user247245 Nov 2 '11 at 13:58
besides h2 and p, there's a div for every child, does that makes any difference? – user247245 Nov 2 '11 at 13:59
feedback

2 Answers

up vote 1 down vote accepted
x$('.result').html('<p>please wait..</p>');

should work according to the documentation of xuijs

link|improve this answer
tried it over and over. it inserts the text on start of .result, leaving all children as it is, :-( – user247245 Nov 2 '11 at 13:56
what about : x$('.result').html('inner', '<p>please wait..</p>'); ? – Guillaume Cisco Nov 2 '11 at 14:01
no sorry - works neither. – user247245 Nov 2 '11 at 14:08
1  
and if you write <div id="result"> and simply try to change it like that : document.getElementById('result').innerHTML('<p>please wait..</p>') – Guillaume Cisco Nov 2 '11 at 14:17
Forgive me, old content reloded through ajax. My errror. Thanks for your involvment. – user247245 Nov 2 '11 at 14:20
show 1 more comment
feedback

x$('#foo').html('remove');

http://xuijs.com/docs/dom

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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