| jquery Programming Glossary: do_tipLinking/unlinking jquery object to an element http://stackoverflow.com/questions/2124327/linking-unlinking-jquery-object-to-an-element  element function my_unlink id  # id .unbind mouseover  todo  function my_link id  todo  THE MAIN FUNCTION function do_tip new_id if old_id  my_unlink old_id  my_link new_id  alert new_id  else  my_create new_id old_id new_id new_id.focus  script.. 160px padding 25px color #fff  h1 width 400px text align center background color yellow style head body h1 onclick do_tip this.id id _1 John h1 h1 onclick do_tip this.id id _2 Mary h1 h1 onclick do_tip this.id id _3 Dan h1 h1 onclick do_tip this.id.. 400px text align center background color yellow style head body h1 onclick do_tip this.id id _1 John h1 h1 onclick do_tip this.id id _2 Mary h1 h1 onclick do_tip this.id id _3 Dan h1 h1 onclick do_tip this.id id _4 Paul h1 h1 onclick do_tip this.id.. 
 |