Search code examples
javascriptjqueryhyperlinkjquery-pluginsgetorgchart

In getorgchart jquery plugin how to remove the getorgchart hyperlink present at the bottom of the screen


I am trying to use getorgchart jquery plugin. And I want to remove the 'GetOrgChart' hyprlink which is showing in the bottom of the screen. I have tried removing it from getorgchart.js file but it is still showing up. Is it part of the theme? How Can I stop showig it on my webpage???

Please help..


Solution

  • Try this, It worked for me.

    Add following code in your html page.

     $(document).ready(function(e) {
    
        setInterval(function(){ $('a[title="GetOrgChart jquery plugin"]').hide(); }, 10);
    
     });