C
|
cgphp 10/13/2012 |
Jquery solution: $('textarea').attr('readonly','readonly'); |
T
|
Tempus_Erus author 10/13/2012 |
Jquery solution: $('textarea').attr('readonly','readonly');
|
C
|
cgphp 10/13/2012 |
Yes, add the code to the "Javascript onload" event. |
T
|
Tempus_Erus author 10/13/2012 |
Brilliant, Thank you once again. |
T
|
Tempus_Erus author 10/14/2012 |
Brilliant, Thank you once again.
|
C
|
cgphp 10/14/2012 |
$("value_textarea_" + pageid).attr('readonly','readonly'); |
T
|
Tempus_Erus author 10/14/2012 |
$("value_textarea_" + pageid).attr('readonly','readonly');
|
C
|
cgphp 10/14/2012 |
What is the name of the field? Is it a textarea or a text input? |
T
|
Tempus_Erus author 10/14/2012 |
the field is called incident_details and is a text area.... |
C
|
cgphp 10/14/2012 |
$('textarea').attr('readonly','readonly');
|
T
|
Tempus_Erus author 10/14/2012 |
$('textarea').attr('readonly','readonly');
|
T
|
Tempus_Erus author 10/18/2012 |
Still unable to resolve. |
C
|
cgphp 10/18/2012 |
The following jquery code works fine for me: $('textarea').attr('readonly','readonly'); |