Skip to content

Instantly share code, notes, and snippets.

@resarahman
Created June 11, 2016 02:37
Show Gist options
  • Select an option

  • Save resarahman/e7643899fe35e1ecc591b601a511889f to your computer and use it in GitHub Desktop.

Select an option

Save resarahman/e7643899fe35e1ecc591b601a511889f to your computer and use it in GitHub Desktop.
Learn jQuery - Lesson 4
(function() {
var link = $('link');
$('button').on('click', function() {
var $this = $(this),
stylesheet = $this.data('file');
link.attr('href', stylesheet + '.css');
$this
.siblings('button')
.removeAttr('disabled')
.end()
.attr('disabled', 'disabled');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment