Skip to content

Instantly share code, notes, and snippets.

@tatarjr
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save tatarjr/3f18e4560f9dd274ad37 to your computer and use it in GitHub Desktop.

Select an option

Save tatarjr/3f18e4560f9dd274ad37 to your computer and use it in GitHub Desktop.
// Call & init
$(document).ready(function(){
$('.ba-slider').each(function(){
var cur = $(this);
// Adjust the slider
var width = cur.width()+'px';
cur.find('.resize img').css('width', width);
// Bind dragging events
drags(cur.find('.handle'), cur.find('.resize'), cur);
});
});
// Update sliders on resize.
// We all do it: i.imgur.com/YkbaV.gif
$(window).resize(function(){
$('.ba-slider').each(function(){
var cur = $(this);
var width = cur.width()+'px';
cur.find('.resize img').css('width', width);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment