vote up 0 vote down star

hi, my code

function   hide()
{
  var lblclear= document.getElementById("<%=Label1.ClientID%>"); 
  if(lblclear!= null) {
    lblclear.value="";
    lblclear.innerText="";
    lblclear.outerText="";
  }
}

on button click i am calling this function

the above function works fine in IE it is clearing my label text value in firefox browser it is not clearing my label text value

can any one help me out thank you

flag

48% accept rate
Have you got some errors? – x2 Nov 9 at 6:53

3 Answers

vote up 0 vote down

Add a call to Alert in your function to see if your function is even getting called.

link|flag
vote up 1 vote down

innerText will only work in IE, for other browser you should use innerHTML

function   hide()
{
  var lblclear= document.getElementById("<%=Label1.ClientID%>"); 
  if(lblclear!= null) {
    lblclear.value="";

    if (document.all) { // check if IE
      lblclear.innerText="";
      lblclear.outerText="";
    }
    else{  // other browsers
      lblclear.innerHTML="";
      lblclear.outerHTML=""; // updated. thanks @cdmckay
    }

  }
}

please check working example

link|flag
1  
Don't you mean outerHTML for the second line of the else? – cdmckay Nov 9 at 7:07
@cdmckay yes I mean outerHTML. updated. thanks – Q8-coder Nov 9 at 7:30
vote up 3 vote down

Your problem is that innerText and outerText is not supported on Firefox.

http://www.java2s.com/Tutorial/JavaScript/0460__DOM-Node/GetouterTextvalueforatagFirefoxdoesnotsupporttheouterText.htm

In order to hide this you can remove it (as that looks like what you are doing) or, preferably, using css, either the element.style properties or set className, but you can set the visibility or display to a value that does what you want.

link|flag
+1 for CSS suggestion – Carlos Lima Nov 9 at 7:04

Your Answer

Get an OpenID
or

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