Jump to content

activating deactivating an input ?


yami007

Recommended Posts

Some thing like

 


onClick="yourjsfunction();"

 

Stick an ID on the table, and set its attributes to hidden using CSS.

 


#your_table{

visibility: hidden;

}

 

The JS function

 


function yourjsfunction(){


document.getElementById("your_table").style.visibility = "visible";



}

 

This should point you towards the right direction

 

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.