-
Notifications
You must be signed in to change notification settings - Fork 0
Attr Parser
Malexion edited this page Nov 6, 2016
·
1 revision
-
[options][Optional] Options param,{...}key - value groups for attributes.
var attr = new __.lib.AttrParser({ class: 'btn btn-default' });
attr.update({
class: 'btn btn-success',
id: 'mybtn',
title: 'This is my btn',
style: 'width: 50%;'
});
attr['style'] = 'width: 100%;';
attr.remove('title');
attr.update('id="mySampleBtn"');
console.log(attr.asString);
console.log(attr.asObject);
attr.clear();
console.log(attr.asString);