Support » Plugins » Use permalink value in jquery

  • Hi people, I need to get the_title and the_permalink to use instead of: “browser_title” and “browser_permalink”

    jQuery(document).ready(function(){
    
        jQuery('.portfolio-item a').live('click', function(e){
            e.preventDefault();
            var link = jQuery(this).attr('href');
            jQuery('#contenthome').fadeOut(500).load(link + ' #content-wrapper', function(){ jQuery('#contenthome').fadeIn(500); });
            $('html, body').animate({scrollTop:0}, 'slow');
            try {
                if (window.location.search.substring(1).length == 0) { // if no query string
                    window.history.pushState('page', '<strong>browser_title</strong>', '<strong>browser_permalink</strong>');
    
                }
            }
            catch (e) { /* browser doesn't support */ }
    
        });
    
    });

    Is it possible to do that?

    Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter Ale Urrutia

    (@alectro)

    Sorry, I just realized I posted on “PLugins and Hacks” forum, please delete this thread, I will post it again.

Viewing 1 replies (of 1 total)
  • The topic ‘Use permalink value in jquery’ is closed to new replies.