<script type="text/javascript">
$(document).ready(function(){
function listadepoimentos(page){
// $.get("ajaxes.php", {act:'listadepoimentos', page:page}, function a(b){$('#holder').html(b)}, "text");
$.ajax({
type: 'GET',
url: 'ajaxes.php',
data: {act:'listadepoimentos', page:page},
success: function(data){
//alert(data);
$('#holder').html(data);
},
error: function(xhr, type, exception){
alert("Error: " + type);
}
});
}
listadepoimentos(0);
});
</script>
It works fine on all browsers but SOME ie8. Yes, SOME. I've tried various ie8 browsers and in some of these it works, some not.
Is there a reasonable answer?