Maybe something like that:

$('a').one('click',function()
{
        var tag= $(this), link = tag.attr('href'), json={href:'http://
jquery.com'} ;
        setTimeout( function( /*link, tag, json*/ )
        {
                /*tag
                .attr('href',json.href)
                .click( function(){ window.location=json.href; })
                .trigger('click');*/
                window.location=json.href ;
        }, 1000);
});

Reply via email to