Quantcast
Channel: Adobe AEM CQ tips » javascript
Viewing all articles
Browse latest Browse all 6

Fancybox doesn’t show div

$
0
0

Problem

Showing div using fancybox doesn’t show nothing.
Fancybox code

$("#myDiv").fancybox();

Solution

You can do a simple workaround.

$.fancybox({
   content: $("#myDiv").html()
});

This will show content of your div in fancybox


Viewing all articles
Browse latest Browse all 6

Trending Articles