Guest User

Untitled

a guest
Jan 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. var rightSideHeight;
  2. var optionsHeight;
  3.  
  4. $(".quickViewContent .selectboxit-container").live("click", function() {
  5. rightSideHeight = $(".quickViewPopup .product-details-page .overview").height();
  6. optionsHeight = $(this).find(".selectboxit-options").height();
  7. var newHeight = rightSideHeight + optionsHeight;
  8.  
  9. $(".quickViewPopup.active .quickViewContent").css("height", newHeight + "px");
  10. });
  11.  
  12. $("#product_childattribute_size_@(Model.Id)").bind({
  13. "close": function (ev, obj) {
  14. console.log("rightSideHeight = " + rightSideHeight);
  15. $(".quickViewContent").removeAttr("style").css("height", rightSideHeight + "px");
  16. //$(".quickViewContent").get(0).style.setProperty('height', rightSideHeight + 'px');
  17. }
  18. });
Add Comment
Please, Sign In to add comment