Guest User

Untitled

a guest
Jan 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function() {
  2. // Function to sync the sizes of the divs
  3. function syncSize() {
  4. $("#banner_description").width($(".banner_secondary_title").outerWidth(true));
  5. }
  6.  
  7. // Sync the size when a change is made
  8. $(".banner_secondary_title").resize(function(e) {
  9. syncSize();
  10. });
  11.  
  12. // Initial sync after document setup
  13. syncSize();
  14. });
Add Comment
Please, Sign In to add comment