I have buttons on a page that looks like this:
<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'm not sure which one. Does anyone know how to fix this to work with IE?
What exactly are you trying to achieve? If you want the custom button to redirect to view.php, you can useonclick:
view.php
onclick:
<input type="button" name="view" value="View Database" onclick="window.location.href='view.php';" />
or something similar.
<a> , . , , <input> script onclick css, -ish ( display: block display: );
<a>
<input>
, . URL- , :
<form action="view.php"> <input type="submit" name="view" value="View Database" /> </form>
javascript, . , , javascript.
<input type="button" onclick="javascript:document.location='view.php';" value="View Database"/>
:
<input type="button" name="view" value="View Database" onclick="javascript:window.location='view.php'"/>
Source: https://habr.com/ru/post/1739161/More articles:Восстановление/Перезапуск java-демона от сбоя - javaIssues with MPMoviePlayerController on iPad - objective-cjquery toggle to work in multiple instances - jqueryHow do you handle files that cannot support concurrent changes in Mercurial? - mercurialJava Reflection Utility - javaIs there a Markdown editor for Dojo - markdownjQuery: dynamic image processing (waiting to load) - jqueryHow can I detect touch events on a UIImageView inside a deep hierarchy of UIViews? - objective-cheader, roll, feed - androidhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1739166/cloning-a-git-from-svn-repository-and-getting-all-the-remote-branches&usg=ALkJrhhKwHIhbj5suVjCRcVK8xX6HI-tVAAll Articles