1
vote
2answers
490 views
How to replace Dom element in place using javascript?
for an element in DOM,such as an "A" element,how to replace it with a "span" instead?
…
0
votes
1answer
144 views
Is it possible to get document of iframe with iframe_id?
AFAIK,I can achieve this goal by window.frames['frame_name']
but if I only know frame_id,is it possible to get the content too?
You can try it out here:
…
0
votes
3answers
129 views
how to get lastSibling by javascript?
There is a native "nextSibling" attribute,but how to get "lastSibling"?
…
2
votes
7answers
328 views
what’s the easiest method to append a TR to a table by javasript?
if the table id is known,so the table can be specified by docoument.getElementById(table_id),
how can I append a TR element to that table in the easiest way?
the TR is like follows: …
1
vote
5answers
73 views
pros and cons for these 2 kinds of loading javascript files?
A:
<script type="text/javascript" src="b1.js"></script>
<script type="text/javascript" src="b2.js"></script>
<script type="text/javascript" src="b3.js"> …
1
vote
2answers
53 views
what are different in these 2 executing flavors?
1.
<div id="test"></div>
<script type="text/javascript">
//operate document.getElementById('test')
</script>
2.
<div id= …
1
vote
3answers
73 views
Dom book which introduces DOM as much as possible?
I want to read a book that systematically introduces dom with live examples.
Any recommendation?
…
1
vote
3answers
159 views
can a textNode have a childNode which is an elementNode ?
Say,is the following possible:
textNode.appendChild(elementNode);
elementNode refers to those with nodeType=1
textNode refers to those with nodeType=2
…
1
vote
2answers
151 views
how does jQuery implement get elements by class name?
There is no such a "getElementsByClass" function in javascript,
then how does jQuery manage to do that?
Looping all elements will be too less efficient.
BTW,how to specify c …
0
votes
2answers
52 views
How to clone part of DOM and put it inside a div with jQuery?
$("id").clone()
then put the jQuery object into a div#target
how to do that?
…
0
votes
3answers
41 views
How to find the div before a specified element with jQuery?
<td>
<div class="resumehint"></div>
<input type="file" id="resume" />
</td>
How to get the div before "#resume" with jQuery?
…
0
votes
2answers
67 views
How to fetch only topest level div with jQuery?
<div id="container">
<div>
<div>
</div>
</div>
<div>
<div>
</div>
</div>
<div>
<d …
2
votes
1answer
158 views
How to unset id attribute with jQuery?
$().attr('id','') still leaves id = "" snippet,
how to completely remove it?
…
1
vote
2answers
279 views
0
votes
4answers
47 views
How to select within a container with jQuery?
<div id="container1">
<span>...</span>
</div>
<div id="container2">
<span>...</span>
</div>
Say if I have get the jQuery ob …
