The Artima Developer Community
Sponsored Link

Java Answers Forum
jsp:highlighting text in textarea control

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
pallavi pawar

Posts: 3
Nickname: pallavip
Registered: Feb, 2006

jsp:highlighting text in textarea control Posted: Feb 24, 2006 2:46 AM
Reply to this message Reply
Advertisement
hi all
i have loaded one txt file into text area line by line
& have some strings in array.
I want to highlight the text in textarea which mathches strings in array.

currently i can highlight a word
below is my method

range=form.textarea.createTextRange();
flag=range.findText(vartosearch,10000000);
if(flag==true)
{ range.select();
}

but this does not work in mozilla
also when strings continue on next line it can't highlight

if anyones knows help me out
thanks in advance

Topic: error message: unable to access jarfile server.jar Previous Topic   Next Topic Topic: joptionpane troubles

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use