i have in my Web Application Buttons that not in Form , they are in Table , i tryed all possible ways to click this Buttons (Links) but i dose not work, please try this html code if you can help! thanx Matani
<html> <head> <title>test</title> </head>
<body> <table cellspacing="2" cellpadding="0" border="0"> <tr> <td> <button type="button" onclick="window.open('http://www.google.de','_self');" title="googlede" onfocus="window.status='Ausbauen';return true" onblur="window.status='';return true" > google.de</button> </td> <td> </td> <td> <button type="button" onclick="window.open('http://www.google.com','_self');" title="googlecom" onfocus="window.status='Korrigieren';return true" onblur="window.status='';return true" > google.com</button> </td> </tr> </table> </body> </html>
Log in to post a comment.
i have in my Web Application Buttons that not in Form , they are in Table , i tryed all possible ways to click this Buttons (Links) but i dose not work, please try this html code if you can help!
thanx
Matani
<html>
<head>
<title>test</title>
</head>
<body>
<table cellspacing="2" cellpadding="0" border="0">
<tr>
<td>
<button type="button" onclick="window.open('http://www.google.de','_self');" title="googlede" onfocus="window.status='Ausbauen';return true" onblur="window.status='';return true" > google.de</button>
</td>
<td> </td>
<td>
<button type="button" onclick="window.open('http://www.google.com','_self');" title="googlecom" onfocus="window.status='Korrigieren';return true" onblur="window.status='';return true" > google.com</button>
</td>
</tr>
</table>
</body>
</html>