Hide HTML element by id

前端 未结 6 1241
执念已碎
执念已碎 2020-12-29 04:38

Hopefully there\'s a quick and dirty way to remove the \"Ask Question\" (or hide it) from a page where I can only add CSS and Javascript:

  
6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 05:17

    If you want to do it via javascript rather than CSS you can use:

    var link = document.getElementById('nav-ask');
    link.style.display = 'none'; //or
    link.style.visibility = 'hidden';
    

    depending on what you want to do.

提交回复
热议问题