I'm using Jquery BBQ as I want to get the value after a hash in a url. So I have:
var url = $(this).attr('href');
console.log(jQuery.deparam.fragment(url));
When I explore the log I see:
Object
131: undefined
__proto__: Object
__defineGetter__: function __defineGetter__() { [native code] }
Etc Etc.
The number 131 is the value after the hash I want, I just can't seem to get at it (I'm pretty new to Jquery). So how can I get at the value, in this case 131? This is probably very easy...