Open Dynamic Image in new tab?

1
Is it possible to open a Dynamic Image in a new tab? Currently, you can set the onclick behavior to enlarge the image in the same tab, as shown below. Unfortunately, if the Dyanmic Image widget is on a Pop-up layout page, the page will stay superimposed over the enlarged image, also shown below. Is there a way to instead open the image in another tab via a microflow or other means?    
asked
1 answers
1

Probably, but if you give .mx-imagezoom a high enough z-index in your styling you wouldn’t need a new tab at all. Something like:

.mx-imagezoom {
    z-index: 108;
}

 

answered