I am trying to hide a div class="axiosnext-arrow" when the current url is www.mysite.com/#home using the following code:
<script language="text/javascript">
jQuery(document).ready(function($) {
$(function(){
if (window.location.search == "#home") {
$('.axiosnext-arrow').hide();
} else {
$('#navleft').show();
}
});
});
</script>