Pop-Up Hints

calendar November 18, 2009

Download the overLIB javascript library.

Code:

<?php
function popup($txt, $popup)
{
?>
  <a href="javascript:void(0);"
  onmouseover="return overlib('<?=$popup?>');"
  onmouseout="return nd();">
  <?=$txt?>
  </a>
<?php
}
?>
<html>
<head>
<title>Popup hints</title>
<script type="text/javascript" src="overlib.js"></script>
</head>
<body>
<div id="over"
style="position:absolute;visibility:hidden;z-index:1000;">
</div>
Greece is a small
<?php
popup(
      'country ',
      'Small but very beautiful<br /> with many islands'
     );
?>
in southeast Europe.
</body>
</html>

Save the code as index.php

Unpack the overLIB library into your web server’s documents directory, add in the index.php file and surf to it on your browser. This popup can be used with images, tables, fonts, styles and whatever you want.

admin

Leave a Reply

You must be logged in to post a comment.