2

I have implemented Scalable Inman Flash Replacement (sIFR) to convert text. The issue is, I'm unable to do onClick event over the iSFR embed tags.

$(function() {
    $("embed").click(function(){
        alert('clicked over embed');
    });
});

This works in Firefox but not in Internet Explorer. Can anybody help me?

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880

2 Answers2

2

Flash movies tend to eat these events.

sIFR 3 lets you specify an onRelease callback handler in the sIFR.replace() arguments, which is called when the Flash movie is clicked on.

Mark Wubben
  • 3,329
  • 1
  • 19
  • 16
1

It might also be worth checking out cufón at http://cufon.shoqolate.com/generate/

Marco
  • 2,329
  • 1
  • 21
  • 25