最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery removing mCsutomScrollbar from element - Stack Overflow

programmeradmin3浏览0评论

Using mCustomScrollbar on jQuery UI dialogs.

If I initiate mCsutomScrollbar on $(window).load as proposed on the mCsutomScrollbar instructions, it does not work because my dialogs are not visible at that point. So I have to initiate mCsutomScrollbar on the open event of the dialog.

open: function() {
    $(this).mCustomScrollbar();
    }

Which works except when I open the same dialog a second time mCustomScrollbar is initialized for a second time when it already is initialized and breaks. I can see the custom scrollbar but I cannot scroll.

So it seems I need a way to remove mCustomScrollbar on close or beforeclose event of the dialog. Not exactly sure how to do this.

Using mCustomScrollbar on jQuery UI dialogs.

If I initiate mCsutomScrollbar on $(window).load as proposed on the mCsutomScrollbar instructions, it does not work because my dialogs are not visible at that point. So I have to initiate mCsutomScrollbar on the open event of the dialog.

open: function() {
    $(this).mCustomScrollbar();
    }

Which works except when I open the same dialog a second time mCustomScrollbar is initialized for a second time when it already is initialized and breaks. I can see the custom scrollbar but I cannot scroll.

So it seems I need a way to remove mCustomScrollbar on close or beforeclose event of the dialog. Not exactly sure how to do this.

Share Improve this question asked Jul 1, 2013 at 13:54 user2107004user2107004 5
  • Try initialize the mCustomScrollbar after $('.dialog').dialog(); – Wilker Iceri Commented Jul 1, 2013 at 13:56
  • .dialog is called in a .click function so does not really work is this situation, still need a way to remove mCustomScrollbar – user2107004 Commented Jul 1, 2013 at 14:38
  • You can try use a update method of mCustomScrollbar() in onclick – Wilker Iceri Commented Jul 1, 2013 at 14:43
  • FYI I did try initializing mCustomScrollbar after .dialog and it only works the first time the dialog is opened just like when using the open event. Still need a way to remove mCustomScrollbar on close. I also tried initializing mCustomScrollbar in the dialog create event and it does not work at all. Seems the only point where mCustomScrollbar can be called is when the element is open and visible. – user2107004 Commented Jul 1, 2013 at 14:47
  • I tried .mCustomScrollbar("update"); does not seem to work either :( – user2107004 Commented Jul 1, 2013 at 15:18
Add a ment  | 

1 Answer 1

Reset to default 11

turns out there is a built in function in mCustomScrollbar that does what I need

$('selector').mCustomScrollbar("destroy")

发布评论

评论列表(0)

  1. 暂无评论