get/set attr
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Fri, 27 Sep 2013 09:31:18 +0000 (11:31 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 9 Oct 2013 14:56:55 +0000 (16:56 +0200)
src/smartxml/smartxml.js

index b7fc3f1..04449cf 100644 (file)
@@ -62,6 +62,14 @@ $.extend(ElementNode.prototype, DocumentNode.prototype, {
         return new ElementNode(this._$.parent());
     },
 
+    getAttr: function(name) {
+        return this._$.attr(name);
+    },
+
+    setAttr: function(name, value) {
+        this._$.attr(name, value);
+    },
+
     append: function(documentNode) {
         this._$.append(documentNode.nativeNode);
     },