Using TextContent For FF Instead Of InnerText
Feb 3, 2009
document.getElementById (document.getElementById(which).id + "div").innerText = document.getElementById (document.getElementById(which).id + "div").innerText + document.getElementById (itemtocheck+i).parentElement.title + ",";
i have teh above line how do i use innertext||textcontent
View 1 Replies
Feb 13, 2011
I'm trying to assign the value of the textContent attribute from a DOM element to a var inside a filter function. Example code follows:
$('*').filter(function (i) {
var textValue = $(this).textContent;
if (textValue.substr(0,2) == "<$")
return true;
return false;
});
The assignment to textValue isn't working. The value of textValue is always null after the assignment. This happens with all element types. It even happens with a span element where by looking at the textContent attribute through a javascript debugger I can see the attribute has the expected string value; it is not null.
View 4 Replies
View Related
Sep 26, 2004
Does anybody know replacement for document.innerText, that runs only under MSIE ?
View 3 Replies
View Related
Jul 23, 2005
I know that innerText is not supported in FireFox and I've found the
following code fragment which was originally designed in an HTMLElement
prototype for an innerText getter. I do not however want to use the
getter approach and want to just get the innerText as follows:
var childS = iframe.contentWindow.document.body.childNodes;
for(var i=0; i<childS.length; i++)
{
if(childS[i].nodeType==1)
text+= childS[i].tagName=="BR" ? '
' : childS[i].innerText;
else
if(childS[i].nodeType==3)
text+= childS[i].nodeValue;
}
Unfortunately, this does not work... iframe is an instance of an object
created as follows: iframe=document.createElement("iframe");
Any suggestions on how to make this work? I think the answer lies in
the declaration of childS but I'm not quite sure.
View 2 Replies
View Related
Mar 25, 2009
I have 3 radio buttons and based on which is clicked I want to write html to a div. So far nothing is happening and it seems that the onclick is not being done at all or tried.
This is what I have:
Code:
<script type="text/javascript">
<!--
function getAmt(ss){
if(ss == "fy"){
[Code]....
View 3 Replies
View Related
Nov 8, 2011
I have a table that i need to hide 2 rows in one the 1st td has innerText *=Balance and the other innerText *=Total. Using the my selector for totali get 2 tds I need to not select the row with a td containing Month. For some reason my selectors only select the td, i was trying tr td[innerText *=Balance] this selects the td not the row
View 1 Replies
View Related