Dynamically add check box using javascript

 <html>  
 <head>  
 <script type="text/javascript">  
 function createCheckBox()  
 {  
      var myCheckBoxUnchecked = document.createElement("input");  
      myCheckBoxUnchecked.setAttribute("type","checkbox");  
      myCheckBoxUnchecked.setAttribute("value","checkbox");  
      var myCheckBoxChecked = document.createElement("input");  
      myCheckBoxChecked.setAttribute("type","checkbox");  
      myCheckBoxChecked.setAttribute("value","checkbox");  
      myCheckBoxChecked.checked = true;  
      var handler = document.getElementById("LoadCheckbox");  
      handler.appendChild(myCheckBoxUnchecked);  
      handler.appendChild(myCheckBoxChecked);  
 }  
 </script>  
 </head>  
 <body>  
      <input type="button" value="Create Checkbox" onClick="createCheckBox()" />  
      <div id="LoadCheckbox"></div>  
 </body>  
 </html>   

Erode Arts College

Our Class Room:



College Cricket Match



Eclipse memory leak error


out-of-memory-leak-error dialog in windows

Create a new bat file:

          eclipse -vmargs -XX:MaxPermSize=128M

          Save file to "eclipse.bat".

          Now start the "eclipse.bat" then your eclipse IDE started.