Backbone.JS View Attributes()

Backbone.js Attributes
The Backbone.JS View Attributes() method is used as a DOM element attributes on the view class.

Syntax:

View.Attributes 

Example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<title>Example</title>
<script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js" type="text/javascript"></script>
<script type="text/javascript">
var X = Backbone.View.extend({
initialize:function(){
document.write(this.tagName);
} });
var Y = new X({tagName: "HELLO WORLD!!"});
</script>HELLO WORLD!!
<title>Example</title> <script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js" type="text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js" type="text/javascript"></script> <script type="text/javascript"> var X = Backbone.View.extend({ initialize:function(){ document.write(this.tagName); } }); var Y = new X({tagName: "HELLO WORLD!!"}); </script>HELLO WORLD!!
  

  
Example  
  
  
  
  
  
HELLO WORLD!!  
  
  

Output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
HELLO WORLD!!
HELLO WORLD!!
HELLO WORLD!!

Explanation:
In the above example the Attributes() method is used as a DOM element attributes on the view class.