getting ad to close jquery

Solutions on MaxInterview for getting ad to close jquery by the best coders in the world

showing results for - "getting ad to close jquery"
Debra
22 Sep 2020
1<div id="adbox"> ad code goes here </div>
Simone
26 Aug 2018
1<script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
2   
3<div id="adbox"> ad code goes here </div>
Sofia
01 Feb 2016
1document.querySelector('#adbox').onclick = function() {
2  this.style.display = 'none';
3};
Mae
04 Jul 2018
1$('#adbox').on('click', function() {
2  $(this).hide();
3});
similar questions
queries leading to this page
getting ad to close jquery