Skip to main content

All Questions

0 votes
2 answers
464 views

Trouble making text disappear in code using Javascript

I'm simply trying to get the text to disappear when the mouse hovers over a sprite, and it won't do that. I've tried many things - putting text(A/B).visible = true; in an else statement. I've moved my ...
Joshua Hawkes's user avatar
1 vote
2 answers
46 views

Visibility does not work

So I have content that is hidden. And using one button, I want to make it visible. But it doesnt work <table style="visibility:hidden;" id="viewevade"> <tr> <td class=...
Shieryn's user avatar
  • 234
0 votes
2 answers
4k views

onClick transition and make visible

I am trying to make a div, or a p element visible by a click of a button. Something like this in JavaScript: document.getElementById("id").style.transition="visibility"; document.getElementById("id")....
user3704766's user avatar
0 votes
3 answers
1k views

use jquery .length only on visible fields

I have a form that uses javascript to dynamically add fields when an "Add field" button is clicked. Additionally, users can remove fields by pressing a "remove field" button. If a field is removed, ...
Philip7899's user avatar
  • 4,657
1 vote
2 answers
238 views

javascript - check if div is visible when setting visibility with js

In my html I have one div that is set to be invisible <div id ="isticContainer" style='display:none'> Then I have one radio button, and when the radio button is checked/clicked my div appears ...
user2886091's user avatar
0 votes
2 answers
582 views

How to change visibility of an element on current page?

Some currently building a little interface for a project and I'm stuck at a point. Currently I have a function setPage() that set a .current class to the active link. But... I would like to change ...
Islander's user avatar