Using JavaScript you can Display an image and text in a JSP. Try to understand give code which is helpful for you.
Code:
<html>
<head>
<title></title>
<script type="text/javascript" language="javascript"><!--
function Check()
{
var element = document.getElementById("TextBox");
element.value = "Check it!";
return true;
}
//--></script>
</head>
<body>
<br><br>
<center>
<img src="test.gif" alt="Click here" onclick=" Check()" />
<br><br><br>
<input type="text" size="30" id="TextBox" value="" />
</center>
</body>
</html>
Bookmarks