Hi There
I have a problem with a load function in jquery i try to call data from an url, images and text but this is not working in IE but is working with Firefox
Something like this
function loadProperties(propertiesPage) {
$('#properties .content').slideUp(500);
$('#properties .content').load('url' + propertiesPage, function () {
$('.video a').colorbox({
width: 800,
height: '100%',
iframe: true
});
$('#properties .content').slideDown(500);
$('#properties .next').click(function () {
propertiesPage++;
loadProperties(propertiesPage);
});
$('#properties .previous').click(function () {
propertiesPage--;
loadProperties(propertiesPage);
});
});
}
Here I leave the url to you check it and help me, please.
http://openhomeonline.com.au/reod/properties/black
Cheers