How to display an image in alert/message box in jsp

Jaishree Rout

I want to display an image in message box. Is it possible.

I am working in java script and jsp.

<script>
window.confirm(<img src="myimage.png" width="100" height="100" alt="plot" border=3 />);

Pierpaolo Cira

This is not possible in pure Javascript... but you can use an external library to achieve your goal.

Take a look here: How do I display image in Alert/confirm box in Javascript?

The best suggestion uses a JQuery component: http://jqueryui.com/dialog/

Hope it help.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related