Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function add_close_button_to_ads() {
- ?>
- <script>
- /* Add Close Button for Mobile Sticky Ads */
- (function ($) {
- $(window).ready(function () {
- var container = $('.jnews_mobile_sticky_ads'),
- wrapper = container.find('.ads-wrapper');
- wrapper.html(wrapper.html() + '<span id="close">X</span>');
- wrapper.find('#close').css({ 'position': 'absolute', 'top': '0px', 'right': '0', 'font-size': '32px', 'cursor': 'pointer' });
- wrapper.find('#close').click(function (e) {
- e.preventDefault();
- $(this).parent().parent().remove();
- });
- });
- })(jQuery);
- </script>
- <?php
- }
- add_action( 'wp_footer', 'add_close_button_to_ads' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement