[javascript] document.getElementById("remember").visibility = "hidden"; not working on a checkbox

I cannot get the visibility or display properties to work.

Here is the HTML footer:

<div id="footer">
  &copy; 
  <strong id="foot" onmouseover="showData();" onmouseout = "hideData()">
    Exquisite Taste 2012
  </strong>
  <input type='checkbox' id="remember" onclick='editCookie()' style="visibility:hidden;" />
</div>

Here is the .js function with the visibility part not working:

function showData()
{


  document.getElementById("remember").visiblity="visible";


  document.getElementById("foot").innerHTML = getDate() + "  " + getTime();

  if(cookieValue())
  {
    document.getElementById("remember").checked = true;
  }
}

That one line doesn't seem to do anything:

document.getElementById("remember").visiblity="visible";

This question is related to javascript visibility

The answer is


This is the job for style property:

document.getElementById("remember").style.visibility = "visible";

you can use

style="display:none"

Ex:

<asp:TextBox ID="txbProv" runat="server" style="display:none"></asp:TextBox>