Setting spellcheck = false programmatically using below code in igCombo is not working in iPad.
I need to turn of spell check in my application even it is turned on in iPad settings. Please let me know how to fix this.
function removeSpellCheck(){
$("input[type='text'],input[type='tel'],input[type='email'],input[class^='ui-igcombo-field']").each(function(){
if(!$(this).is('[spellcheck]')){
$(this).attr('spellcheck','false')
}else if($(this).attr('spellcheck') == "true"){
}
})
Any updates on this?
Hello Ramya,
Could you provide a little more detail about what spellchecker you mean? Is this something more like the red squiggle that appears under a word to show it is misspelled or more like Apple's autocorrect?
If it is the autocorrect feature then you will also want to add in settings for autocorrect="off". For more information please see this stackoverflow discussion:
http://stackoverflow.com/questions/3496658/html-how-can-i-disable-auto-text-correction-in-my-textarea