Disable skype plugin style with Jquery


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" language="javascript"></script>
  2. <script language="javascript">
  3. $(document).ready(function() {
  4. window.setTimeout(function() {
  5. $('.skype_pnh_container').html('');
  6. $('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
  7. }, 800);
  8. });
  9. </script>

URL: http://www.petefreitag.com/item/751.cfm

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.