Jump to content

clickable object inside a text box


hasanatkazmi

Recommended Posts

The disapearing act:

<script>
function hide(id) {
   obj = document.getElementById(id);
   obj.style.display = "none";
}
</script>
<a onclick="javascript:hide('content')">-</a>
<div id="content"><input type="text"></div>

 

If you actually want do do somethign with the text that the user inputs, eg. send to a php to get a result, then it is ajax.

But I think I missed your point completeley.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.