Line 1:
Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
−
$('#wagon-configurator-list li').click(function(){
+
$(document).ready(function(){
−
$(this).addClass('selected');
+
var wagonSelection;
−
$(this).siblings().removeClass('selected');
+
−
var wagonSelection = this.wagonClass[0];
+
$('#wagon-configurator-list li').click(function(){
−
});
+
$(this).addClass('selected');
+
$(this).siblings().removeClass('selected');
+
var wagonSelection = this.classList[0];
+
});
−
$('#wagon-configurator li.wagon-slot').click(function(){
+
$('#wagon-configurator li.wagon-slot').click(function(){
−
alert("You selected " + wagonSelection);
+
alert("You selected " + wagonSelection);
+
});
});
});