Forum Moderators: open
Unable to get value of the property '0': object is null or undefined
var index = 0, hash = window.location.hash;
if (hash) {
index = /\d+/.exec(hash);
if (index && index.length > 0) {
index = (parseInt(index[0]) || 1) - 1;
}
else {
index = 0;
}
}