jQuery Mobile 2-page Base Fiddle
by Ali Seyfi
HTML
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<div></div>
CSS
html, body, div {
height:100%;
width:100%;
margin:0;
padding:0;
}
div {
height:200%;
}
::-webkit-scrollbar {
-webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
width: 12px;
}
::-webkit-scrollbar:horizontal {
height: 12px;
}
::-webkit-scrollbar-thumb {
background-color:#CE0003;
border-radius: 10px;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: grey;
}