red.js 290 B

123456789
  1. (function ($) {
  2. Drupal.behaviors.jsWeightsRed = {
  3. attach: function (context, settings) {
  4. var weight = settings.jsWeights.red;
  5. var newDiv = $('<div />').css('color', 'red').html('I have a weight of ' + weight);
  6. $('#js-weights').append(newDiv);
  7. }
  8. };
  9. })(jQuery);