All,
In the code below,Could u please tell me that how code should be changed such that on mouse over hyperlink,div should appear and on the right side of the hyperlink
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('a.moreDetails').hover(function() {
$(this).next().toggle('fast');
});
});
</script>
<body>
<a href="#" class="moreDetails">(details)</a>
<div class="details">User 1</div>
</body>
</html>
Thanks..............