Alright, so I have thepage.php which contains the following code:
When I click on that it hides the text displaying on that page and then pulls up a form for me to modify the text.
My question is: if I want to put that link on anotherpage.php so that it will go to thepage.php and run that onclick command, how can I do it?
Code:
<a href="#" onclick="$('app').hide(); $('controls').show(); return false;">click here</a>
When I click on that it hides the text displaying on that page and then pulls up a form for me to modify the text.
My question is: if I want to put that link on anotherpage.php so that it will go to thepage.php and run that onclick command, how can I do it?