Forum Moderators: open

Message Too Old, No Replies

How to go to anchor link (for example the bottom page), after clicking submit button?

         

basketmen

1:14 pm on Jan 18, 2010 (gmt 0)

10+ Year Member



Using below script after clicking the button it will reload the page and starting the application

I want people go to anchor link location after clicking the submit button, for example go to the bottom of the page because the program is in the bottom of the page

how to do that guys please help

echo '<form action="" id="frm_chat" method="post"><fieldset id="fieldset_chat"><legend>Chat</legend><div>';
echo $err_msg;
echo "<label>Nick: </label>".$txt_nick->getHtml()."<br />";
echo "<label>Server: </label>".$ddl_server->getHtml()." or ".$txt_server->getHtml()."<br />";
echo "<label>Channel: </label>".$ddl_channel->getHtml()." or ".$txt_channel->getHtml()."<br />";

echo ' <input type="submit" class="btn" name="btn_chat" value="Chat Now"/></div></fieldset></form>';

rocknbil

7:39 pm on Jan 18, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



<form action="somescript.php#fragment-id">

Or if you're doing a redirect on submit,

header("Location:some-script.php#fragment-id");

And it can be any unique element, not just an anchor:

<h3 id="fragment-id">Chat</h3>

<div id="fragment-id">Chat</div>