We want to create a new jQuery plugin called linkUpdater that can be chained onto other jQuery selector like a normal plugin. It should update all the links in the referenced collection so they open in new windows or tabs. Below is the first cut. What is one problem with this plugin?
'user strict';
($.linkUpdater = function () {
this.find('a').attr('target', '_blank');
})(jQuery);