Funkcionalnosć toś togo sedła se pśez wótwardowańske źěła wobgranicujo, kótarež maju wašo dožywjenje pólěpšyś. Jolic nastawk waš problem njerozwězujo a cośo pšašanje stajiś, wobrośćo se na našo zgromoźeństwo pomocy, kótarež na to caka, wam na @FirefoxSupport na Twitter a /r/firefox na Reddit pomagaś.

Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

getCommandValue is not working in firefox

more options

Hello,

queryCommandValue method in javascript used to get CSS Format of selected text. Though it shows support for Mozilla Firefox, it is not working in it. Refer Link :http://help.dottoro.com/ljqhsrpe.php

Thanks.

Hello, '''queryCommandValue '''method in javascript used to get CSS Format of selected text. Though it shows support for Mozilla Firefox, it is not working in it. Refer Link :http://help.dottoro.com/ljqhsrpe.php Thanks.

Wubrane rozwězanje

In that case, your bold text would be in its own "node":


<div><b>Hello</b> world to sample application</div>

I'll see whether I can create a demo page (not for a while, busy day).

Toś to wótegrono w konteksće cytaś 👍 0

Wšykne wótegrona (10)

more options

That function is part of the Midas text editor that allows to edit text when designmode is enabled.

See:

more options

You might able to use getComputedStyle() instead. See https://developer.mozilla.org/en-US/docs/DOM/window.getComputedStyle

That method operates on an element; I don't think it supports a range directly. You probably need to check the range's startContainer or endContainer (or both if they are different; hopefully not).

more options

Thanks a lot for a quick reply. document.queryCommandValue method link is not working. Will you please provide me a better example which can explain this?

more options

There is a test file that Mozilla uses to test this feature:

more options

Basically, I want style of selected text. Suppose, I have a full text "Hello world to sample application" placed in div. Then I made a word "Hello" in bold. I want to retrieve style of word "Hello" word and not of whole div. How to do this by using getComputedStyle or getCommandValue? Will you post whole html page snippet to do this?

Wót nilophar změnjony

more options

Wubrane rozwězanje

In that case, your bold text would be in its own "node":


<div><b>Hello</b> world to sample application</div>

I'll see whether I can create a demo page (not for a while, busy day).

more options

Thanks a lot,

more options
more options

Hello jscher, The example provided by you is just awesome. Thanks a lot for your quick help. The example works well in Firefox,chrome and safari but not working with IE. What to do?

You and this forum helps me a lot. Keep it on...!!!

Thanks, Nilophar

Wót nilophar změnjony

more options

IE has a very different way of working with ranges, and I'm not sure you would use the same approach. Check out these articles, which might be similar to your original code: