Hello,
I am wondering to implement this logic. Any suggestion or help
I have two iframes
1) iframe 1 is Navigation menu(loaded with flash menu).
<iframe name=”menu”/>
2) iframe 2 is load the web page.
<iframe name=”page_load”/>
When I click the navigation menu the corresponding web page loaded.
In one part, when I clicked the navigation “menu” the login_reg.php page open in page_load.
The login_reg page has two parts of form,
1) In one registration process is done
<form id=”registration”/>
2) In another login is done.
<form id=”login_form”/>
When I submit the login page, it check the login and password exists and if it success.
The following should handled,
My logic:
1) The new page loaded in “page_load” iframe and also it reload the “menu” iframe by using the src attribute. I implemented by using the jquery. But It not work,
<script type="text/javascript">
$("#login_form").submit(function()
{
$("#menu").attr("src")="../pub@lic_profile/@_profile/all_@_all/horizontal_menu/flashmo_114_horizontal_03.swf";
$("#menu").load();
});
</script>