Skip to content

Javascript Frontend framework for DOM elements , events , attribute and etc.

License

Notifications You must be signed in to change notification settings

KishanV/QuickTags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

QuickTags

Javascript Frontend framework for DOM Elements, Events and etc.

Example (Javascript & jQuery)

$(document.body).tags({
   'div.btn':{
       $:{
           text:'Button A',
           attr:{
               data:'demo attr'
           },
           event:{
               click:function(){
                   alert('Clicked : Button A');
               },
               mousedown:function(){
                   alert('Mousedown : Button A');
               }
           }
       }
   },'.btn':{
      $:{
          text:'Button B',
          event:{
              mousedown:function(){
                  alert('Mousedown : Button B');
              }
          }
      }
   }
});

Output

About

Javascript Frontend framework for DOM elements , events , attribute and etc.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published