I have html object as -
<html>
<object type="text/html" data="https://somesite.com" style="
height: 250%;" width="100%" height="100%">
--- somesite's own form--
<form name="aspnetForm" method="post" action="actionurl" id="aspnetForm" style="margin-bottom:0;margin-top:0;">
</object>
</html>
form tag seen in object is somesite.com 's internal form. I want to write javascript on my page using this object that , when action of this form is changed , I should handle that event.
What is event for form action change in javascript ?