Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. .lightbox{
  2. display:none;
  3. }
  4.  
  5. <a href="#" class="ExibirLightBox">Exibir</a>
  6.  
  7. <div class="lightbox>
  8. // Conteudo do lightbox
  9. </div>
  10.  
  11. $(document).ready(function (e) {
  12. $('.ExibirLightBox').hover(function (e) {
  13. $(".lightbox").css("display", "block");
  14. }
  15. )
  16. });
  17.  
  18. <div class="tooltip">I am a tooltip!</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement