Trying to use jquery.modal with Editor
Trying to use jquery.modal with Editor
obrienj
Posts: 93Questions: 38Answers: 0
I am trying to present a modal from within the Editor bubble.
I am using jquery.modal.js from GitHub.
The modal appears behind the bubble and I see it when I close the bubble.
How can I make it appear on top of the bubble like a datepicker does?
Or is there a better, more Editor friendly way, to display a modal over the Editor bubble?
Regards,
Jim
This discussion has been closed.
Answers
You'll need to set the z-index. See the MDN docs for that parameter.
Editor's bubble editing view is
z-index: 11;
.Allan