Posts by Visionário • 11 points
2 posts
-
0
votes2
answers1286
viewsQ: How to get the value of an attribute in Jquery?
Here’s what I need to do: when a person clicks on an image, the display attribute of a 'ul' is changed to block, and then, when that person clicks again, the attribute value is 'None'. I wanted to…
-
0
votes3
answers3680
viewsA: How do I eliminate the top space my DIV leaves?
Try: .element { margin-top: -20px; position: absolute; display: table; width: 960px; height: 120px; background-color: #000000; border: 0px; } Explanation: This happens because the whole element has…