Pregunta

I am having a button and when updated that value using jQuery JAWS is not able to read the updated value. It still reads the old value.

<input id="save" type="button"  value= "Save" onClick="saveValues()" />

$("#save").attr('value', 'Update');

Value is getting changed to "Update" but JAWS still reads as "Save". How to resolve this issue?

¿Fue útil?

Solución

It works when i added the "title" attribute and updated the same using jquery

$('#save').attr('title', 'Update');
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top