Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Volatire666

    Cannot select text with Firfox!

    I've finally figured it out for anyone else with similar problems: selectText = function(node, text) { if (window.getSelection) { node.selectionStart = node.value.lastIndexOf(text); node.selectionEnd = node.value.lastIndexOf(text) + text.length; node.focus()...
  2. Volatire666

    Cannot select text with Firfox!

    Here is the scenario: I have a textarea with text in it and I want to select/highlight predefined text within the textarea with a function. This code using ranges works with IE - selectText = function(node, text) { var range = document.body.createTextRange(); range.moveToElementText(node)...

Part and Inventory Search

Back
Top