• File: admin.js
  • Full Path: /home/chassiw/www/wp-content/themes/inspiry-builderpress/js/admin.js
  • File size: 441 bytes
  • MIME-type: text/plain
  • Charset: utf-8
(function ($) {
    "use strict";
    $(document).ready(function () {
        var widgetTitle = $('.widget-top h3');
        var targetTitle = 'BuilderPress';
        $.each(widgetTitle, function (i, val, element) {
            var title = val.innerText;
            if (title.indexOf(targetTitle) !== -1) {
                val.setAttribute("style", "background-color: #ffd800; color: #1a1a1a");
            }
        });
    });
})(jQuery);