When I click a refresh button on my page the page that reloads doesn't seem to be selectiung the first tab as it usually does with a refresh or reload page?

My jquery tabs are set up as you'd normally find anywhere.

Any ideas?

<head>
    <script type="text/javascript" src="js/jquery-1.4.2.js"></script>
</head>

tabs

<div class="tabs">
    <ul class="tabNavigation">
        <li><a href="#priority">Priority</a></li>
        <li><a href="#urgent">Urgent</a></li>
        <li><a href="#potential">Potential</a></li>
        <li style="margin-left:75px">&nbsp;</li>
    </ul>
    <div id="priority">
    </div>
    <div id="urgent">
    </div>
    <div id="potential">
    </div>
</div>

Button call

 <input type="button" id="btnRefresh" value="Refresh" onclick="do_refresh()"/>

do_refresh function

function do_refresh()
{
var man_num = document.getElementById('txtOpCode').value;
var ps=document.getElementById('drpSect').value;
var url = "auto.php?v=l&man_num="+man_num+"&ps="+ps;
window.location.reload(url);        
}

jQuery tabs function

<script type="text/javascript" charset="utf-8">
$(function () {
  var tabContainers = $('div.tabs > div');
  tabContainers.hide().filter(':first').show();
  $('div.tabs ul.tabNavigation a').click(function () {
    tabContainers.hide();
    tabContainers.filter(this.hash).show();
    $('div.tabs ul.tabNavigation a').removeClass('selected');
          $(this).addClass('selected');
     return false;
    }).filter(':first').click();
        });
</script>
link|improve this question

In fact it's all the jQuery that isn't reloading.... – thegunner May 4 '11 at 17:16
4  
Some code would be nice. I don't want to break into your house to debug code, again... – Blender May 4 '11 at 17:18
Code added. Does seem to reload the JQuery after refresh .... – thegunner May 4 '11 at 17:31
+1 for Blender's awesome comment :) – pixelbobby May 4 '11 at 17:33
Did you clear your cache? – Blender May 4 '11 at 17:35
show 4 more comments
feedback

1 Answer

Ok I changed the way this works and I was trying to display as tab section on reload I think before it had been dynamically created. I've now removed that and jquery appears to be loading ok now. So the user will have to select an option from the dropdown but for now that is ok.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.