Я разделил содержимое моего тела на две части. Левый имеет карту и кнопки. Когда я нажимаю на кнопку, я получаю результат от Arad.php
в другом окне.
Как я могу установить цель на вторую половину (разделенная справа) моего тела?
<body>
<div class="split left">
<div class="centered">
<h2>Button on Image</h2>
<p>Add a button to an image:</p>
<div class="container">
<img src="Harta_Romaniei.jpg" alt="Harta_Romaniei" style="width:100%">
<button class="btnarad"; onclick= "window.location.href='Arad.php'"; Target="split right">Arad</button>
<button class="btntimisoara">Timisoara</button>
</div>
</div>
</div>
<div class="split right">
<div class="centered">
<h2>Information</h2>
// I want the information here!
</div>
</div>
</body>