Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <img src="<?= base_url(); ?>img/face1.jpg" id="icon"> //<-- this function is from codeigniter, to get the base url
  2.  
  3. $(document).ready(function(){
  4. $("#icon").mouseover(function() {
  5. $(this).fadeOut(1000);
  6. }).mouseout(function(){
  7. $(this).fadeIn(1000);
  8. });});
  9.  
  10. $(document).ready(function() {
  11. $("#icon").mouseenter(function() {
  12. $(this).fadeOut(1000);
  13. }).mouseout(function() {
  14. $(this).fadeIn(1000);
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement