Add click event handler to div tag : HTML « Ext JS « JavaScript DHTML






Add click event handler to div tag

 


<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {

    
    
    Ext.get('div1').on('click', function(eventObj, elRef) {
         alert('myDiv click Handler, source elment ID: ' +  elRef.id);
    });


    

});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
  








Related examples in the same category

1.Create Child for Div tag
2.Create child for div tag with html tags
3.Child from a config object
4.Set style for created children
5.Nested div tag with border
6.Insert child as node to a div tag
7.Insert node to an indexed position
8.Set Div tag size
9.Get width and height of a Div tag
10.Use update method to set new text for div tag
11.Align div tag to another tag
12.Put mask to a div tag
13.Add child tag to div tag
14.Remove a tag from html body
15.Get last children