hintbox.js 279 B

123456789101112
  1. $(document).ready(function() {
  2. $('.hover').mousemove(function(e){
  3. var hovertext = $(this).attr('hinttext');
  4. $('#hintbox').text(hovertext).show();
  5. $('#hintbox').css('top',e.clientY+15).css('left',e.clientX+15);
  6. })
  7. .mouseout(function(){
  8. $('#hintbox').hide();
  9. });
  10. });