Is there anyone who can tell me how to do this? This is the call I use here for loading content dynamically:
jQuery(document).ready(function($) {
function load(num) {
$('#pageContent').load(num +".html");
}
$.history.init(function(url) {
load(url == "" ? "1" : url);
});
$('#bbon a').live('click', function(e) {
var url = $(this).attr('href');
url = url.replace(/^.*#/, '');
$.history.load(url);
return false;
});
});
It uses jQuery to initiate the history plugin. Can this be modified to somehow use the hashbang? I've read a lot of articles but nothing gives you an example of how to do this.