Switch to full style
HTML code examples
Post a reply

Popup message without using javascript

Fri Jan 18, 2013 8:39 pm

Popup message without using JavaScript but with using title attribute to show a simple popup message when mouse over a text or any html element.
javascript code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>
Simple POPUP
</title>
<style type="text/css">
#DivBox {
font-family:Arial,sans-serif;
font-size:10px;
color:black; background:#FFFF99;
width:300px;
text-align:center;
padding:4px 5px 4px 5px;
font-weight:bold;
border:1px solid gray;
}
</style>
</head>


<body>
<div id="DivBox" title="Pop up message">Mouseover this text part</div>

</body>


</html>




Post a reply
  Related Posts  to : Popup message without using javascript
 Popup message using JavaScript without using alert function     -  
 Show popup dialog using JQuery     -  
 Choice choiceList popup list of choices     -  
 JMS Message Consumer Example     -  
 How to Show a message before the login ?     -  
 Java message service(JMS)     -  
 Trace soap message     -  
 Text message board RPG     -  
 Editing guest message in PHPbb3     -  
 stick message even when user scrolls down or up     -  

Topic Tags

HTML Popup