Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #760106

    Rad
    Moderator

    Hi Nout,

    Please try this one,

    jQuery(document).ready(function($){
    	$('.eg-ajax-a-button').click(function(){
    		$(document).ajaxSuccess(function() {
    			$('.esgbox-opened a.btn-blank-window').click(function(){
    				var URL = $(this).attr('href');
    				window.open(URL);
    				$(this).off('click');
    			});
    		});
    	});
    });

    If not working, then this one,

    jQuery(document).ready(function($){
    	$('.eg-ajax-a-button').click(function(){
    		$(document).ajaxSuccess(function() {
    			$('.esgbox-opened a.btn-blank-window').click(function( e ){
    				e.stopPropagation();
    				var URL = $(this).attr('href');
    				window.open(URL);
    				$(this).off('click');
    			});
    		});
    	});
    });

    Hope this helps.