Did you know that Sitecore comes with a bunch of admin pages? And not just a couple? They’re quite hidden and undocumented but still very useful and can help with debugging and clarification of your solution. The admin pages varies from Sitecore version to version why my overview will be based on what’s available in the latest Sitecore version, […]
Tag: cache

How to fix jQuery.load() in IE for cached images
Solution 1, removing the cache by adding a datetime string to the image src: $(‘<img/>’) .attr(‘src’, ‘image_url?’ + new Date().getTime()) .load(function() { alert(‘Image loaded’); }); This solution works almost everytime but sometimes it has introduced even more IE weirdness for me. It can also be an costly affair if you have many visitors why I […]