I'm having a lot of trouble creating a dual rangeslider with jQuery mobile. When i implement the following suggested code from the jQuery Mobile docs I simply get two separate slider beneath each other.
<div data-role="fieldcontain">
<div data-role="rangeslider" data-mini="true">
<label for="range-8a">Rangeslider:</label>
<input type="range" name="range-8a" id="range-8a" min="0" max="100" value="0">
<label for="range-8b">Rangeslider:</label>
<input type="range" name="range-8b" id="range-8b" min="0" max="100" value="100">
</div>
</div>
I ideally want to stay away from jQuery UI as this will be another framework (and quite a large one) that the user will have to download if they don't already have it cached. I'm trying to keep my application as lightweight as possible. Perhaps i'm doing something wrong in my implementation?