Skip to content

Instantly share code, notes, and snippets.

@KustoSan
Last active September 8, 2015 15:40
Show Gist options
  • Save KustoSan/3715e6b2a2f9caf3133d to your computer and use it in GitHub Desktop.
Save KustoSan/3715e6b2a2f9caf3133d to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var tapeteColor = 'az';
var maderaColor = 'cl';
$('a[tapeteColor]').click(function() {
tapeteColor = $(this).attr('tapeteColor');
$('.videoini').attr('src', 'img/' + tapeteColor + '-' + maderaColor + '.jpg');
});
$('a[maderaColor]').click(function() {
maderaColor = $(this).attr('maderacolor');
$('.videoini').attr('src', 'img/' + tapeteColor + '-' + maderaColor + '.jpg');
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment