I downloaded a plugin called anno.js few days a go, I dont really good in js code. I want to custom a built-in button in this plugin. Is there anyone ever do this before?
All I want to do is to custom this Skip button 

become this one
this is my js code
var anno8 = new Anno([{
        target: '.guides',
        position: 'left',
        content: "Add another app or manage existing ones by going to <b>‘My Applications’</b> through this menu button",
        buttons:[{
            text:'Skip',
            click: function(anno,evt){
                anno.hide();
                //$('#dialog').modal('show');
            }
        },AnnoButton.NextButton]

 
     
    