I want to resize the bjqs slider when resizing a window.
this is what i have so far:
<script type="text/javascript"> $(document).ready(function() { $(window).resize(function(){ $('.pagebg').bjqs({ height : 347, width : $(window).width(), showcontrols : false, showmarkers : false, }); }); }); </script>
I tried resizing it using $ (window) .resize, but there are several instances that do
Does anyone know how I can resize it and save only one instance?
source share