I'm having a small question about a project I'm developing.
It happens as follows:
I have this input on a index.php page :
<input id="exibe" value="Aqui vai ficar o texto **que foi** copiado">
On the other page, I have this (pull.php) element:
<font id="pegar" class="campo">Aqui fica o texto **que vai ser** copiado</font>
What I need is when someone accesses the index.php that has
input
withid="exibe"
, that < strong>input
will have yourvalue=""
filled with the text on the other page ( pull.php ) which is in<font>
withid="pegar"
.
Is it possible to do this?