Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <a href="ajax/portfolio_single.php" data-content="ajax" class="ajax-call">CLICK HERE FIRST</a>
                <div class="ajaxshow"></div>
</body>
</html>
 
(function($){
    
    'use strict';
    var ajaxcontent = $('[data-content="ajax"]'),
        pathname = window.location.pathname,
        url = window.location.href,
        ajaxUrl;
    // console.log(pathname);
    // console.log(url);
console.log(ajaxcontent.length);
    ajaxcontent.each(function(index, el) {
        
        $( this ).append('<span class="ajax-live"></span>');
        ajaxUrl = $(this).attr('href');
        // console.log(ajaxUrl);    
        pathname = pathname + '/' + ajaxUrl;
        ajaxcontent.click(function(event) {
            event.preventDefault();
            $( '.ajax-live' ).addClass('ajax-live-on');
            $( this ).after('<span class="ajax-close animated bounceInRight">CLICK HERE NOW</span>');
            $('.ajaxshow').append().load(ajaxUrl);
            $('.ajaxshow').addClass('animated bounceInUp');
        });
    });
        $(document.body).on('click', '.ajax-close', function( event ){
            event.preventDefault();
            alert('hi');
            $( '.ajax-live' ).removeClass('ajax-live-on');
        });
    // console.log(pathname);
})(jQuery);
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers