Enabling FIREBUG in IE

Hi there,

I have different rendering for components in IE and Firefox (this will be another post :smug: ). However, my question here is how to enable FIREBUG in Internet Explorer.

It is a matter of adding a script in the element of the HTML page (unfortunately, this is not just F12, as in FF)

The only way I planned this so far is ugly:

  • extending ApplicationServlet (e.g. MyApplicationServlet)
  • have MyApplicationServlet override method
    service
    (actually an exact copy of
    AbstractApplicationServlet.service
    )
  • declare my own writeAjaxPage method in MyApplicationServlet which is again a copy of the abstract class, but adds the entry in the head element of the page

:wacko:

Any other suggestion ?

Thanks in advance and best regards,

Damien