I have 4 different div
with image thumbnails. For thumbnail click I have created a jQuery script to enlarge the image. Enlarge image works for the first page #C1
, but remaining pages, the outerWidth
is returning 0. Hence the Enlarge image is not displaying as expected. The class collection-column set to display: none
in CSS. On the click of the drop down menu, I use fadeOut()
to hide all its siblings, and to display the current #(href attribute). I can't use visibility:hidden
as it is completely hiding the page.
How can I use outerWidth()
function for all the other pages.
<div class="collection-column" id = "#c1">....</div>
<div class="collection-column" id = "#c2">....</div>
<div class="collection-column" id = "#c3">....</div>
<div class="collection-column" id = "#c4">....</div>
Did anyone face the similar issue? Please help!!
There's a workaround about this issue that sets the position to absolute and moves the element to a non visible area. Then get's it's dimensions and restores the original position.
Usage: