Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $("#html").hover(
  4. function() {$("<span>HTML(ang.HyperText Makup Language) - hipertekstowy język znaczników.</span>").appendTo("#opis");},
  5. function() {$("#opis").empty();}
  6. );
  7.  
  8. $("#css").hover(
  9. function(){$("<span>Kaskadowe arkusze stylów (ang.Cascading Style Sheets, w skrócie CSS) to język służacy do opisu formy prezentacji.</span>").appendTo("#opis");},
  10. function() {$("#opis").empty();}
  11. );
  12. $("#jq").hover(
  13. function(){$("<span>jQuery - lekka biblioteka programistyczna dla języka javascript.</span>").appendTo("#opis");},
  14. function() {$("#opis").empty();}
  15. );
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement