Hello, dear homeideasinc.
Edit our jquery.quicksand.js file. Find code
if ($.browser.msie && !window.XMLHttpRequestmsie || (typeof($.fn.scale) == 'undefined')) {
// Got IE and want scaling effect? Kiss my ass.
options.useScaling = false;
}
Please edit the code and write like this.
if (navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequestmsie || (typeof($.fn.scale) == 'undefined')) {
// Got IE and want scaling effect? Kiss my ass.
options.useScaling = false;
}
Edit our jquery.quicksand.js file. Find code
if ($.browser.msie && $.browser.version.substr(0,1)<7) {
$sourceParent.html('').append($collection);
return;
}
Please edit the code and write like this.
if (navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequestmsie && $.browser.version.substr(0,1)<7) {
$sourceParent.html('').append($collection);
return;
Thank You.