Posts by Felipe Avezani • 33 points
2 posts
-
2
votes3
answers64
viewsA: Making a div reappear
To disappear everything but the pink div you must clone the pink div and recreate it outside the element DOM or take the pink div of the content element so that it is not erased. Or do something…
-
1
votes3
answers1863
viewsA: Get original image dimension with Javascript
Searching found the following Cod: var img = document.getElementById('imageid'); var width = img.clientWidth; var height = img.clientHeight; only that it will return its size according to the DOM…