10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
(function ($) {
|
|
Drupal.behaviors.jsWeightsPurple = {
|
|
attach: function (context, settings) {
|
|
var weight = settings.jsWeights.purple;
|
|
var newDiv = $('<div />').css('color', 'purple').html('I have a weight of ' + weight);
|
|
$('#js-weights').append(newDiv);
|
|
}
|
|
};
|
|
})(jQuery);
|