I need to clear the text decoration property of the element using java script.

Currently I am setting text decoration property of element to 'line-through'. In some point of time i need to undo the strike process.

How to reset the text decoration property using javascript?

link|improve this question

65% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Here's one way:

HTML

<p id="a">Some text</p>

CSS

p{text-decoration:line-through;}

js

var p = document.getElementById('a')
p.style.textDecoration = 'none';

http://jsfiddle.net/jasongennaro/nVeGB/

link|improve this answer
feedback

Javascript: document.getElementById(element_id).style.textDecoration = "none"

jQuery: $('#element_id').css("text-decoration", "none");

link|improve this answer
feedback

setting text-decoration to none actually is a bit worser then setting text-decoration to "". $("div").css("text-decoration", "")

The difference is that by setting to empty string you actually removing js-setted property. Say, you element has text-decoration: "underline" initially (in css, before you've set the value using jQuery). Setting it to "none" will be wrong. Removing the property will be nice.

link|improve this answer
feedback

set the text decoration to none

or with document.getElementById(divID).style.removeAttribute("textDecoration",false) you can remove the textDecoration form the style (works in IE )

link|improve this answer
textDecoration is not an attribute – Phil Jul 28 '11 at 12:24
don't write code if you are not sure how it works. – shabunc Jul 28 '11 at 12:27
my code is working, but sadly only on IE .... – f1r3Ph03n1xX Aug 5 '11 at 7:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.