aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/bower_components/jquery-slimscroll/examples/dynamic-content.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/bower_components/jquery-slimscroll/examples/dynamic-content.html')
-rw-r--r--public/bower_components/jquery-slimscroll/examples/dynamic-content.html81
1 files changed, 81 insertions, 0 deletions
diff --git a/public/bower_components/jquery-slimscroll/examples/dynamic-content.html b/public/bower_components/jquery-slimscroll/examples/dynamic-content.html
new file mode 100644
index 0000000..1ac5e56
--- /dev/null
+++ b/public/bower_components/jquery-slimscroll/examples/dynamic-content.html
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>jquery.slimscroll - dynamic content</title>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
+
+<link href="libs/prettify/prettify.css" type="text/css" rel="stylesheet" />
+<script type="text/javascript" src="libs/prettify/prettify.js"></script>
+<script type="text/javascript" src="../jquery.slimscroll.js"></script>
+<link href="style.css" type="text/css" rel="stylesheet" />
+</head>
+<body>
+<a id="git-fork" href="https://github.com/rochal/jQuery-slimScroll"><img src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
+<div class="examples">
+
+
+ <div id="testDiv">
+ </div>
+
+ <pre class="prettyprint">
+ // update content every second
+ setInterval(function(){
+ var el = $('&lt;div&gt;&lt;/div&gt;').html('#' + $('#testDiv').children().length)
+ .css({ padding: '3px', border: '1px solid #ccc', margin: '5px' });
+ $('#testDiv').append(el);
+
+ // update slimscroll every time content changes
+ $('#testDiv').slimscroll();
+ }, 1000);
+
+ $('#testDiv').slimscroll({
+ alwaysVisible: true,
+ height: 150
+ });
+ </pre>
+
+
+
+</div>
+
+<script type="text/javascript">
+ $(function(){
+
+ // update content every second
+ setInterval(function(){
+ var el = $('<div></div>').html('#' + $('#testDiv').children().length)
+ .css({ padding: '3px', border: '1px solid #ccc', margin: '5px' });
+ $('#testDiv').append(el);
+
+ // update slimscroll every time content changes
+ $('#testDiv').slimscroll();
+ }, 1000);
+
+ $('#testDiv').slimscroll({
+ alwaysVisible: true,
+ height: 150
+ });
+
+ });
+</script>
+
+
+<script type="text/javascript">
+
+ //enable syntax highlighter
+ prettyPrint();
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-3112455-22']);
+ _gaq.push(['_setDomainName', 'none']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+</script>
+</body>
+</html> \ No newline at end of file