opacity of a text input
Hi Team,
How can i set opacity in a textinput in page show? and when the user taps that textinput the opacity will go back to normal,
i tried to use the disabled thingy using this code:
code//pageshow event
$("[dsid='txtCode']").attr('disabled', true).addClass('ui-state-disabled');
//this is not working in opacity
//and in click/tap event i put this code to enabled the textinput again
$("[dsid='txtCode']").attr('disabled', false).removeClass( 'ui-state-disabled' );
//this is not working too.
/code
Thanks