Guest User

Untitled

a guest
Sep 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // fire event when window is resized
  2. $( window ).resize( function() {
  3. $body = $( 'body' );
  4. $documentWidth = $( '#document-width' );
  5. if ($documentWidth.length===0){
  6. $documentWidth = $( '<p id="document-width" />' );
  7. $body.prepend( $documentWidth );
  8. }
  9. $documentWidth.text( $body.width() );
  10.  
  11. } );
Add Comment
Please, Sign In to add comment