Advertisement
Guest User

Untitled

a guest
May 6th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         // Transform selectbox to dropdowns
  2.         $('select.pm-form-select').each(function() {
  3.             if (typeof $(this).data('customized') === 'undefined') {
  4.                 $(this).data('customized', 'true');
  5.  
  6.                 var sb = new SelectBox({
  7.                     selectbox: $(this),
  8.                     customScrollbar: true,
  9.                     height: 250,
  10.                     changeCallback: function() {
  11.                         //
  12.                     }
  13.                 });
  14.             }
  15.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement