I am trying to have a greybox
pop up in a web applications.
So I googled it and I found some codes and added it to the php page as shown below
<script type="text/javascript">
var GB_ROOT_DIR = "../I/greybox/";
</script>
<script type="text/javascript" src="../I/greybox/AJS.js"></script>
<script type="text/javascript" src="../I/greybox/AJS_fx.js"></script>
<script type="text/javascript" src="../I/greybox/gb_scripts.js"></script>
<link href="../I/greybox/gb_styles.css" rel="stylesheet" type="text/css" media="all" />
<td align="center">
<a href ="http://google.com/" title="Google" rel="gb_page_center[640, 480]">
<i title="Edit" class="icon-modify-circle" style="cursor:pointer;" onClick=""></i>
</a>
</td>
But when I click the link its opening in the new window. Any suggestions appreciated.
I have all the js and css files stored inside ../I/greybox
which are mentioned above.