Selection and highlighting of text in iphone/ipad web browser safari not working
问题 Possible duplicate: Change CSS of selected text using Javascript I tried the code from above link but not getting the result for iPad browser to highlight the selected text. function makeEditableAndHighlight(colour) { var range, sel = window.getSelection(); if (sel.rangeCount && sel.getRangeAt) { range = sel.getRangeAt(0); } document.designMode = "on"; if (range) { sel.removeAllRanges(); sel.addRange(range); } // Use HiliteColor since some browsers apply BackColor to the whole block if (