I have not used this script, but it looks like the problem is the notorious IE cache problem. IE11 doesn't like ajax, and won't work right in most instances. Your ajax request is failing. So to fix the problem when using ajax in jquery, find the $.ajax({ line in notify.js and add a new line as
Code:
getajaxcontent: function(url){
$.ajax({
cache: false,
url: url,
dataType: 'html',
This should make it work.
BTW, you have a few typos in your html that should be corrected:
In line 173:
Code:
<div id="layer0">
<img src="images/header3_991_385.png" class="pc" width="991" height="385" border="0" alt="South Auckland Muslim Association Jamia Masjid Al Mustafa Front Entrance">
In line 375:
Code:
<img src="images/spacer.gif" class="pc" width="10" height="50" border="0" alt="" / > <br />
Posted by Webmaster on Thu 7 Aug 2014 (327 reads)<br />Last Updated 16/08/2014 4:44:08 p.m.
</td>
</tr>
</table>
</td>
</tr>
</table>
And there may be others. I would suggest using FF to debug your code.
Also, you do not have a doctype, just a <html>, yet you use the trailing "/", indicating to me that you are writing xhtml. Hummm, should be one or the other, preferably html5. If you were to use an html5 doctype, IE8 would just ignore it and fall back gracefully. Perhaps you are using a html generator of some sort that is doing funny things.
Anyway, I hope this will shed some light onto controlling your problem.
Bookmarks