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