JavaScript
- 1 ответ
- 0 вопросов
1
Вклад в тег
#content {height: '300px'; overflow: 'auto';}
$("#content").mCustomScrollbar();
$("<link/>", {
rel: "stylesheet",
type: "text/css",
href: "http://www.enin.tpu.ru/1/xx/css/jquery.mCustomScrollbar.css"
}).appendTo("head");
$.getScript('http://code.jquery.com/ui/1.9.2/jquery-ui.js').done(function(script, textStatus) {
$.getScript('http://www.enin.tpu.ru/1/xx/js/jquery.mousewheel.min.js').done(function(script, textStatus) {
$.getScript('http://www.enin.tpu.ru/1/xx/js/jquery.mCustomScrollbar.js').done(function(script, textStatus) {
$("#content").css({height: '300px', overflow: 'auto'});
$("#content").mCustomScrollbar();
});
});
});