01.24.15: New release, bPopup version 0.11.0 01.16.14: Sadly my host has had serious server issues why all old comments are gone! bPopup is a learning and exploring jQuery project. It’s a lightweight cross browser jQuery popup plugin. It’s not creating your popup but doing all the logic as opening, closing, centering on resize & scroll, […]
Tag: jquery

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 […]