Link to home
Start Free TrialLog in
Avatar of dkim18
dkim18

asked on

JavaScript SpellCheck - displaying popup message if there are not misspelled words

Hi Experts,

I am testing a trial version of JavaScript SpellCheck (http://www.javascriptspellcheck.com/) and have a question.

This is live demo with source-code(http://www.javascriptspellcheck.com/):

 <script type='text/javascript' src='/JavaScriptSpellCheck/include.js' ></script>

    <script type='text/javascript'>$Spelling.SpellCheckAsYouType('myTextArea')</script>

    	

    	<textarea name="myTextArea"  id="myTextArea" cols="30" rows="4" style = 'width:500px;height:200px;margin-bottom:20px'>

    		This this is a simple exampl of Spell-checking As-You-Type using javascript spellcheck.

    		It works in almost any browser, and supports upto 24 international languages.

    		The button bellow shows an alternative way to spellcheck using javascript spellcheck - using a dialog iwndow!

    		

    	</textarea> 

    	

    <input type="button" value="Spell Check in a Dialog" onclick="$Spelling.SpellCheckInWindow('myTextArea')" />

Open in new window

 

If you just delete all in the text area and enter spell correct words and hit the 'Spell Check in a Dialog' button, the dialog popup will flash briefly and disappear. I am trying to figure out if there is way to popup message if there are not misspelled words.

Is there any way to detect if this $Spelling.SpellCheckInWindow('myTextArea') closes the dialog windows by itself?

Thanks in advance
ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial