Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
3answers
120k views

How to replace innerHTML of a div using jQuery?

How could I achieve the following using jQuery, that is, document.all.regTitle.innerHTML = 'Hello World'; where regTitle is my div id.
16
votes
8answers
914 views

Get original innerHTML source without the Javascript generated contents

I have this code: <div id="test"> <script type="text/javascript">document.write("hello");</script> </div> If I do: alert(document.getElementById('test').innerHTML); ...
14
votes
5answers
10k views

jQuery html() in Firefox (uses .innerHTML) ignores DOM changes

I'm really suprised I haven't run into this problem before, but it seems that calling jQueries .html() function on an element ignores changes in the DOM, i.e it returns the HTML in the original ...
10
votes
9answers
5k views

Alternative for innerHTML?

I'm wondering if there's a way to change the text of anything in HTML without using innerHTML. Reason I'm asking is because it's kinda frowned upon by the W3C. I know it's nitpicking, but I just ...
9
votes
8answers
5k views

innerHTML removes attribute quotes in Internet Explorer

When you get the innerHTML of a DOM node in IE, if there are no spaces in an attribute value, IE will remove the quotes around it, as demonstrated below: <html> <head> ...
8
votes
5answers
7k views

Can scripts be inserted with innerHTML?

I tried to load some scripts into a page using innerHTML with a div. It appears that the script loads into the dom, but it is never executed (at least in ff and chrome). Is there a way to have scripts ...
8
votes
5answers
1k views

Access Contents of <noscript> with Javascript

<noscript><div id="example">I want to get this innerHTML</div></noscript> <script type="text/javascript"> alert($('example').innerHTML);</script> This javascript ...
7
votes
6answers
2k views

Firefox extensions & XUL: get page source code

I am developing my first Firefox extension and for that I need to get the complete source code of the current page. How can I do that with XUL?
6
votes
2answers
80 views

How does jQuery treat comment elements?

I always thought that jQuery operates only on DOM elements, that is those nodes that have nodeType == 1. However I'm shocked that while creating HTML $("<p> </p><!-- comment -->") ...
6
votes
4answers
159 views

Inner workings of innerHTML

I was trying to iteratively change the innerHTML of an Id, like: document.getElementById("test").innerHTML += "<br />" and document.getElementById("test").innerHTML += "<table>" + ...
6
votes
4answers
108 views

vulnerabilities of letting user define innerHTML

Let's say I have a <textarea> and <div> element, and when the user puts html, CSS, or whatever they want), into the textarea, then their input is set as the innerHTML of the <div> ...
6
votes
4answers
2k views

How to speed up the reading of innerHTML in IE8?

I am using JQuery with the DataTable plugin, and now I have a big performnce issue on the following line. aLocalData[jInner] = nTds[j].innerHTML; // jquery.dataTables.js:2220 I have a ajax call, ...
6
votes
7answers
675 views

innerHTML causes IE6 to (permanantly) lock up

On a site I am working on I load up a series of images which can be animated using some controls I implemented w/javascript. Everything works just fine in all browsers but IE6 which locks up and ...
6
votes
7answers
3k views

If innerHTML is evil, then what's a better way change the text of a link?

I know innerHTML is supposedly evil, but I think it's the simplest way to change link text. For example: <a id="mylink" href="">click me</a> In JS you can change the text with: ...
5
votes
2answers
112 views

innerHTML works in IE and Firefox, but not Chrome

The data will not display in Chrome, unless i open an IE tab in Chrome go to the site then close it back to Chrome (sorry, if that doesn't make much sense). window.onload = function() { var url = ...
5
votes
3answers
132 views

Add to innerHTML without destroying form contents

I have a form that is generated via ajax based of a multi-file uploader (swfupload). It adds more form elements to a given dom element upon the completion of each file uploaded. This thus gives me a ...
5
votes
2answers
205 views

Modifying the innerHTML of a <style> element in IE8

I am creating a style element and I need to put some CSS into it. The below code works in Chrome, Safari and FF, but fails in IE8: var styleElement = document.createElement("style"); ...
5
votes
6answers
3k views

Executing <script> elements inserted with .innerHTML

I've got a script that inserts some content into an element using innerHTML. The content could for example be: <script type="text/javascript">alert('test');</script> ...
5
votes
1answer
627 views

How can I tell when changes to jquery html() have finished?

I'm using jQuery to change the HTML of a tag, and the new HTML can be a very long string. $("#divToChange").html(newHTML); I then want to select elements created in the new HTML, but if I put the ...
5
votes
6answers
3k views

Why can't I add a string containing a script tag to innerHTML in IE

I'm trying to do the following (I'm using the prototype library): var div = document.createElement('div'); div.innerHTML = '<script src="somescript.js"></script>'; ...
5
votes
9answers
17k views

Javascript Replace innerHTML throwing Unknown Runtime Error

function DeleteData(ID) { var ctrlId=ID.id; var divcontents=document.getElementById(ctrlId).innerHTML; var tabid=ctrlId.replace(/div/,'tab'); var ...
4
votes
3answers
40 views

apply values of inputs to all its td innerhtml

is it possible to change the innerhtml of all the td when it has the input inside, i mean to take the input's value and apply it to it's td innerhtml, for example, here's the table and its input ...
4
votes
1answer
93 views

update canvas element with a DOM canvas

let's say I have var myCanvas = document.createElement('canvas'); and I do myCanvas.setAttribute("id", "my-canvas"); document.body.appendChild(myCanvas); Afterwords I make change to myCanvas and ...
4
votes
2answers
97 views

In JavaScript, how can serializer part of the DOM to XHTML?

I would like to serialize part of the DOM to XHTML (valid XML). Let's assume I have just one element inside <body>, and that this is the element I want to serialize: <div> <hr> ...
4
votes
1answer
299 views

Accessing properties hidden by __defineGetter__/__defineSetter__ in JavaScript

I am trying to define a custom setter for the innerHTML property. Unfortunately, i am unable to access the underlying property after i define the setter function: ...
4
votes
1answer
164 views

Does JavaScripts's .innerHTML grab <script> tags?

If you use something like: var contents = document.getElementById('foobar').innerHTML; and #foobar contains <script> tags, are the <script> tags included? EDIT: They are. Proof: ...
4
votes
5answers
2k views

why if (element.innerHTML == “”) is not working in firefox

why is if (element.innerHTML == "") not working in firefox but works fine in IE , any ideas please ?
4
votes
5answers
3k views

JQuery html() vs. innerHTML

Please tell me, Can I rely completely upon jquery html() method that it'll perform like innerHTML? is there any difference between innerHTML and jquery html() method? and if these both do the same ...
4
votes
2answers
550 views

Get/Set innerHTML in Perl HTML::TreeBuilder?

Get/Set innerHTML in Perl HTML::TreeBuilder? I could get innerHTML but dont know how to set. Thanks in Advance.
4
votes
1answer
1k views

Xpath and innerHTML

What Xpath expression can I use to find all the anchor (just 'a') elements whose actual text (the innerHTML) is Logout. something like //a[@innerHTML='Logout'] Would that be correct?
4
votes
2answers
10k views

MSIE : jQuery's append()/html() not working, resorted to getElementById().innerHTML

This is a long one, The Premise Was called in to help out a client with some bug fixing on a current project of theirs. What needed fixing was a jobs listing page. You have a list of jobs, you click ...
4
votes
9answers
2k views

Why does IE give unexpected errors when setting innerHTML

I tried to set innerHTML on an element in firefox and it worked fine, tried it in IE and got unexpected errors with no obvious reason why. For example if you try and set the innerHTML of a table to " ...
4
votes
6answers
31k views

Javascript Iframe innerHTML

Does anyone know how to get the HTML out of an IFRAME I have tried several different ways: document.getElementById('iframe01').contentDocument.body.innerHTML ...
3
votes
2answers
91 views

Why does replacing innerHTML get slower as innerHTML get's larger?

I have a div that is not contentEditable. I capture keystrokes, insert the associated char into a string in memory, and then call a render() function that replaces the innerHTML of the div with the ...
3
votes
2answers
78 views

Multiple innerHTML functions

<script language="JavaScript"> function changeHistory(which) { document.getElementById('maincontent').innerHTML="<iframe src='history.html' width='100%' height='100%' ...
3
votes
1answer
82 views

Equivalent of html() method or innerHTML attribute for XMl document

When display a DOM tree I usually use jQuery method html() or DOM attribute innerHTML. However, they both don't work with XML tree. I wonder if there is anything equivalent to these 2 methods for XML ...
3
votes
3answers
157 views

How can I remove innerHTML?

I was told this was not "proper", I did not worry about it until I started getting a run-time error in IE9. Here is the code I need converted to use object properties. Why is innerHTML not considered ...
3
votes
4answers
112 views

javascript innerHTML adding instead of replacing

quick question, i know we can change the content of a <div id="whatEverId">hello one<div> by using: document.getElementById("whatEverId").innerHTML="hello two"; now, is there a way I ...
3
votes
3answers
80 views

String issue with Javascript adding dynamic HTML

I'm using PHP to generate a Javascript button that adds in a checkbox and some other HTML. What is the proper way to escape these characters to include them in an onclick event? I saw it suggested ...
3
votes
1answer
464 views

using innerHTML at custom tag in IE

I have a problem I just can't solve, and need your advice since I'm out of ideas: Context: I'm using tinyMCE Editor on my website and developed a custom plugin to include external xml files. So far ...
3
votes
5answers
214 views

Using Javascript to modify HTML content

Doubtful this needs much explaining but I think I need a second set of eyes to check this out because I just cannot fathom why it won't! Try using the "Energy Calculator" and no value will be returned ...
3
votes
4answers
356 views

Why are .innerHTML problems solved by JQuery().html()?

I worked out any single instance of document.getElementById("MyID").innerHTML = "A value" in this Javascript World Clock guide causes Wordpress Admin not to load completely and breaks various areas of ...
3
votes
2answers
154 views

Setting .innerHTML

I am developing a Firefox extension which need to change some values on a specific <div>. I try to inject this into the DOM by tying this into the URL bar: ...
3
votes
3answers
2k views

IE9 set innerHTML of textarea with html tags

I have this field In IE9 the following line gives me the error 'SCRIPT601: Unknown runtime error ' //option 1. document.getElementById('code').innerHTML = 'some text'; The error disappears and it ...
3
votes
1answer
590 views

jQuery string to DOM without DOM insertion

I have a textarea with the following content (innerHTML): <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> ...
3
votes
9answers
1k views

.InnerHTML Not working properly in Internet Explorer

I wanted to assign a link tag to innerHTML of a HTML control. But this is not working properly in Internet Explorer. However when I try to assign anything other than <link> & <style> ...
3
votes
4answers
314 views

How to clear tags from a string with JavaScript

<div id="mydiv"> <p> <b><a href="mypage.html">This is an example<a>.</b> <br> This is another example. </p> </div> ...
3
votes
2answers
237 views

what disadvantages are there to use innerhtml to populate a div tag

what disadvantages are there to use inner HTML to populate a div tag consider, all scenarios possible. Thanku
3
votes
2answers
1k views

DOM Exception when assigning HTML entities to innerHTML

On this page http://blog.zacharyvoase.com/2010/11/11/sockets-and-nodes-i/, running the following code in javascript console will throw an Exception. var div = document.createElement('div'); ...
3
votes
1answer
792 views

Filtering the list of friends extracted by Facebook graph api ( more of a JavaScript/Jquery question than Facebook API question)

Hello there JavaScript and Jquery gurus, I am getting and then displaying list of a facebook user's friend list by using the following code: <script> function getFriends(){ var theword = ...

1 2 3 4 5 8