UNPKG

266 BJavaScriptView Raw
1module.exports = (el, $) => {
2 const selectors = [ 'class', 'id' ];
3
4 selectors.forEach(selector => {
5 const attribute = $(el).attr(selector);
6
7 if (typeof attribute !== 'undefined') {
8 $(el).removeAttr(selector);
9 }
10 });
11};