Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //Location
  2. window.location
  3.  
  4. //Location URL
  5. window.location.href
  6.  
  7. //detectar cuando el usuario solicita imprimir una página
  8. window.matchMedia('print').addListener(function(mql) {
  9. if (mql.matches) {
  10. console.log('Imprimiendo')
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement