1
I have the following code:
<form method='post' action='https://cieloecommerce.cielo.com.br/transactional/order/buynow' target='blank'><input type='hidden' name='id' value='00000000-0000-0000-0000-000000000000' /><input type='image' name='submit' alt='TESTAR' /></form>
It opens a new tab with the payment screen of Cielo, I wanted that when you press the button, it opens the screen in the same tab, and not open a new tab.
You could just omit the
target
because the default value is_self
.– Caique Romero