Load post response in iframe

Load post response in iframe

Hi,
i've an iframe
  1. <iframe class="browser" scrolling="no" name="navigation"></iframe>
An when a specific event is fired a POST request is sent to a servlet  
  1. $.post("LoggerServlet", { sharedSessionId: $('#sharedSessionId').val(), level: $('#level').val(), goTo: this.href} );
is it possible to target the POST response to the iframe?

P.S. i think is possible use a workaround, like create a hidden form, populate it dynamically and use submit() method, but i'd prefer a "native" solution if is possible.

Thanks to all.