In index page I have:
<head>
...
<script type="text/javascript">
T$('signup').onclick = function() {
TINY.box.show('externalpage.html', 1, 450, 360, 1)
}
</script>
</head>
In external page, I have:
<a href="#" id="link" title="link tooltip/tipsy value">Link</a>
<script type='text/javascript'>
$(function() {
$('#link').tipsy({gravity: 'n'});
});
</script>
I know this is not correct but I think you know what I mean. So how to make it work?