This relates to my previous post:
jQuery .load Method causing page refresh AJAX
I changed my implmentation to use the .ajax method instead of .load and it wo
Well the problem seems to be here:
success: function(data){ alert(data); $(data).find('.benefitWrap').each(function(){ alert(data); var $benefitWrap = $(this).html(); $('.benefitWrap').replaceWith($('' + $benefitWrap + '')); });
The second alert never appears but the first does. I hate IE!