HTML button to direct to PayPal Gving Fund not working - html

Can someone tell me why this codes will not link to the page?
<form><input class=”MyButton” type=”button” value=”PayPal Giving Fund” onclick=”window.location.href=’paypal.com/us/fundraiser/charity/1521457//button- links.php'” /></form>
I have also tried
<form><input class="MyButton" type="button" value="PayPal Giving Fund" onclick="window.location.href='htpps://www.paypal.com/us/fundraiser/charity/1521457/button-links.php'" /></form>
Neither work. Says page cannot be found.

try this
you had a typo in 'htpps' also use the action param of the form instead of a onclick, it's mean to do that
<form action='https://www.paypal.com/us/fundraiser/charity/1521457/button-links.php'>
<input class="MyButton" type="submit" value="PayPal Giving Fund">
</form>

Related

"action_page.php" in form error leads to Error 404

I want to create a form in HTML and I am leading it to the demo page, "action_page.php". When I press "Submit" it shows Error 404.
I tried changing the attribute up and down but it is still saying Error 404. Is this the right demo link? I double-checked. Can someone show how to fix this and some steps on what to do?
Here is the code I have put to make it clear to you:
<form action="action_page.php"
<input type="submit" value="Submit Survey"
</form>
In conclusion, how can I make the demo link "action_page.php" work? (HTML Answer)
<form action="action_page.php">
<input type="submit" value="Submit Survey">
</form>
Your code must be like that:
<form action="action_page.php" method="GET">
<input type="submit" value="Submit Survey">
</form>

Submit Button not working - could be broken code?

Need help to get my form working. I am creating it for a website as a small school project.
Below is the code to the submit button. Am I missing something? (I can place the whole code if needed):
<form>
<!-- END_ITEMS -->
<input type="hidden" name="EParam" value="FzpUCZwnDno=" />
<div class="outside_container">
<input type="button" onclick="Vromansys.FormBuilder.showPreview()" value="Submit Form" class="submit_button" id="FSsubmit" />
</div>
</form>
Did you try input type="submit" ... instead of "button"? It should work with "submit" when using "form".
Best regards,
Dino

Navigation from a HTML file into another

I have 2 html files in my desktop(login.html & firstpage.html). I have a button in login.html. when i pressed that button i need to navigate to firstpage.html screen.
I have tried like below; I wrote this in login.html page, But it's not working,
<form name="myform">
<input type="button" value="Enter" width="100px" onclick="<a href ='C:\Users\Desktop\firstpage.html'</a>">
</form>
Could anyone please help me to solve this issue.Thanks
Change the code in
<form name="myform" action="firstpage.html">
<input type="submit" value="Enter" width="100px">
</form>
To just link the two files, all you need is to have them in the same folder, and use this line:
<input type="button" value="Enter" width="100px" onclick="document.location='firstpage.html'">
You do not need a form to do this.
Your onclick handler does not need html in it, just the javascript.
You could also do:
Go to page
Make Slight changes in your code like this
</input>
This should work... :)

how use button in internet explorer?

on my source i use
<a href='pag.php'><input type='button' value='Next'/></a>
in firefox and crome when i click on the button i'm redirected to pag.php
but in ie it don't work. how can i do?
The simple way is:
<input type='button' value='Next' onclick="location.href='pag.php'"/>
Form buttons are meant to be used for submitting a form to the page specified in the action attribute, not to be wrapped in <a> tags, which is bad syntax. If this is for a multi-part form, simply add the action attribute to the <form> tag like
<form method="POST" action="pag.php">
<!-- your form elements -->
<input type="submit" value="Next">
</form>
And that will submit the form to pag.php. Otherwise, just use a link, or, if you insist on having it look like a button, use an image link like:
<img src="image_that_looks_like_a_button.png">
Hope this helps.
Instead of what you are doing right now, go for:
<form action="pag.php" method="post" enctype="multipart/form-data">
<INPUT TYPE="submit" name="Submit" value="Next">
</form>
But if you want image instead in place of button, go for:
<INPUT TYPE="image" SRC="image location" ALT="Next">
Hope it solves your problem! :)

Problem with form buttons in IE

I have buttons on a page that look like:
<p>
<a href="view.php">
<input type="button" name="view" value="View Database" />
</a>
</p>
IE does not support these buttons or multiple buttons I am not sure which one. Does anyone know how to fix this to work with IE?
Embedding a button within an <a> tag is not normally done, and really doesn't make any sense. If you want your link to look like a button, then just use the <input> tag with some script on the onclick event, or use css to make your link look button-ish (start by using display:block or display:inline-block);
You can't put an input into the tag, instead, you can create a form, and change your button to a submit one. Then you can choose the target url in the form, like this:
<form action="view.php">
<input type="submit" name="view" value="View Database" />
</form>
I would recommend this over using javascript, because buttons are not designed for navigating a site. If you want to submit information, which is what they are used for, you won't be able to do it so cleanly using javascript.
What exactly are you trying to achieve? If you want a custom button to redirect to view.php, you can use onclick:
<input type="button" name="view" value="View Database" onclick="window.location.href='view.php';" />
or something similar.
<input type="button"
onclick="javascript:document.location='view.php';"
value="View Database"/>
Try with this ugly monster:
<input type="button" name="view" value="View Database" onclick="javascript:window.location='view.php'"/>