Jquery - Jump to the next preview item

Created For: http://stackoverflow.com/q/10771217/352449

by Salustiano Silva

HTML

<a value="2" title="bar" class="thickbox portfolio-next" href="#TB_inline?height=450&amp;width=900&amp;inlineId=id-2">Next</a>

<p class="result"></p>

JavaScript

$(".portfolio-next").click(function(e) {
  e.preventDefault();
    
  var $this = $(this);
    
  var namer = parseInt($this.attr('value'))+1;
  var url   = $this.attr("href");
      url   = url.substring(0, url.indexOf('=id'));
         
  // window.location.href(url+"=id"+namer);
  $('.result').html(url+"=id-"+namer);
});