I have a page that has 52 drop-down menus with the class of regionalSelect.
I have bound the change event to trigger an ajax run to the controller to save to the database and the success callback function is to refresh the page.
After the refresh, the functionality no longer works.
I place this code is my document ready
$("select.regionalSelect").live('change', function(){
var sel = $(this).val();
var id = $(this).parent().parent().find("td[name=propNumber]").html();
$.ajax({
url:"<?php echo site_url('conn/reassignRegional'); ?>",
type: 'POST',
data:{ id: id, regional: sel },
success: function(msg){
var link = "<?php echo site_url('conn/PropertiesAndRegions'); ?>";
window.location.href=link;
} // end success
}); // end ajax
}); // end change
The controller just takes the posted values and inserts it into the database. When the page refreshes, the list is correct but additional changes can't be made.
Since I am presenting a list of our properties and their current regional directors and a mechanism to change as regionals get reassigned, the continued availability of editing is a necessity.
I have been staring at this a while and I am not that experienced a coder as it is, so I decided to ask for fresh eyes.
All help is greatly appreciated!
Thanks, Jon
.live()? You might be able to use$('select.regionalSelect').change(function() {instead, which has mostly the same behavior but a different purpose. Also, when redirecting with JS, you should assign your link towindow.location.hrefinstead of justwindow.location. And make sure your AJAX requests are cached (POSTs shouldn't be, but you never know). – Cory Oct 5 '11 at 22:57location.reload(true)which forces a server refresh. That being said, if you are going to refresh the page, why use AJAX at all? Just use good old fashionedform.submit(). Or, do use AJAX but skip the page refresh. Use JavaScript to update the page if necessary. – gilly3 Oct 5 '11 at 23:07