この3つの違いは何ですか、誰でも教えてください。
if ( document.location.href.indexOf('#Work') > -1 ) {
$('#elementID').animate({"left": "250"}, "slow");
}
if ( document.location.href.indexOf('#Work') > 0 ) {
$('#elementID').animate({"left": "250"}, "slow");
}
if ( document.location.href.indexOf('#Work') != -1 ) {
$('#elementID').animate({"left": "250"}, "slow");
}