Link to home
Start Free TrialLog in
Avatar of Web_Admin
Web_Admin

asked on

On confirmation show textarea

Hello experts,

in my app , when user want to delete row in a table, s/he should enters delete remark "textarea", how i can show text area when click delete , i need friendly way to do this

Thaaaaanks  
SOLUTION
Avatar of Pratima
Pratima
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
function del()
{
      document.getElementById("txtarea").style.display='block';
}
  </script>
 </HEAD>

  <table>
  <tr>
  <td>
      Name
  </td>
       <td>
       <p id='txtarea' style='display:none'>
      <textarea rows='2' cols='10'></textarea>
      </p>
  </td>
    <td>
      <input type='button' value='Do_youWant_Delete' onclick='del()'>
  </td>
  </tr>
  </table>
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Web_Admin
Web_Admin

ASKER

Thaaank you all :)