I use bxslider often, however, when I try to put it in an existing webpage, it shows '1' '2' '3' 'next' 'prev' I've already removed the 'next' and 'prev'. But the '1' '2' and '3' (referring to the 3 sliding images' still shows in the page
example page with this problem
<script type="text/javascript">
$(document).ready(function(){
$('.bxslider').bxSlider({
speed: 3000,
controls: false,
auto: true,
autoControls: false,
touchEnabled: true
});
});
</script>
As it says in the docs, you need to disable the pager:
Making the full call look like this: