Can anyone tell me why this page causes a strange problem on Safari? If you click on any of the boxs on Safari, you will get a multiple alerts or countless alerts.
This is only a simple jquery code,
$(document).ready(function(){
$('.tile-item').click(function(){
alert('0');
});
});
It should just alert one alert box on each click like other browsers (even IE works ok too!)
How can I fix this?
Thanks.
EDIT:
I tested it on Windows 7 Safari 5.0.5 (7533.21.1)
Any has checked it on their Windows?
Thanks.