Ok, all afternoon this been pising me off, can some1 help me get it to work:

Code: 
<html>
<head>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
 
$(document).ready(function() {
 
    //Select all anchor tag with title set to tooltip
    $('a[title]').mouseover(function(e) {
         
//Show the tooltip with faceIn effect        $('.tooltip').fadeIn('500');
        $.tooltip').fadeTo('10',0.8);
         
    }).mousemove(function(e) {
         });
 
});
 
</script>
</head>
</html>
what im tryna do is assign title tags a class in my css, i read by default it assigns itself as .tooltip so i added style to de class btw ^^^^ ain t workin..................

any heLP?
Chris2k Reviewed by Chris2k on . jQuery Tooltips Help Ok, all afternoon this been pising me off, can some1 help me get it to work: <html> <head> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function() { Rating: 5