0
votes
1answer
17 views
How do I choose between innerText or nodeValue?
Hi,
When I need to change a text within a span element, which one should I use and what is the difference:
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnD …
0
votes
2answers
43 views
Text limit inside <span> XHTML?
I would like to limit the text inside a tag so when I add a new article in my ASP admin panel, it only has 350 characters max.
How do I go about doing this?
1
vote
1answer
45 views
Span cursor style on empty areas. IE8 problem
Hi
I have a span with the following style:
margin: 5px 0;
padding: 2px;
cursor: pointer;
display: block;
width:100%;
background-color:Blue;
This works fine with IE6, IE7, FF3 a …
3
votes
2answers
231 views
SPAN vs DIV (inline-block)
Hi,
Is there any reason to use a <div style="display:inline-block"> instead of a <span> to layout a webpage?
Can I put content nested inside the span? What is valid a …
0
votes
2answers
29 views
create a span and inject image to it
i am new to mootoll what i want is to create a new element span and injuct image to it.
i write following code but not working
var newElementVar = new Element('span', {'id' …
2
votes
2answers
84 views
JavaScript: how to change CSS style of created span?
newNode = document.createElement("span");
newNode.innerHTML = "text";
range.insertNode(newNode);
Is it possible to make the text in innerHTML with red background color? I …
0
votes
4answers
40 views
How to retrieve an input element and its surrounded span?
For
<span id="" ...>
<input id="" ...>
Is there any way to retrieve span id? input element is embedded within span?
0
votes
2answers
35 views
Listen to chaning text in a Span Element
I have a span element which display's a changing duration value.
<span id="vtime">--:--</span>
Unfortunately, due to the JS API i am using these is no way to pick u …
1
vote
4answers
137 views
Strip HTML tags and its contents
I'm using DOM to parse string. I need function that strips span tags and its contents. For example, if I have:
This is some text that contains photo.
<span class='title'> ph …
0
votes
2answers
88 views
Why does TinyMCE insert <span> </span> between (django) {% %} tags?
My application features a CMS for editing Django templates.
Whenever I type something like
{% sometag %}
TinyMCE will actually store
{%<span>sometag</span>%}
Is …
1
vote
1answer
21 views
wpf: checking how many components are inside of a Span?
I have WPF Span that is used as a source to a TextBlock. I am doing some tests and it would be very helpful to know in code how many of which type of component is inside of the Spa …
0
votes
2answers
115 views
How do I change the text of a span element in javascript
If I have a span, say:
<span id="myspan"> hereismytext </span>
How do I use javascript to change "hereismytext" to "newtext"
0
votes
1answer
81 views
Stop Visual Web Developer from putting “span lang=”en-us” tags
I'm working my way through figuring out how VWD applies styles depending on how you attempt to modify the formatting for text, and noticed it keeps putting in an
span lang="en-us …
1
vote
4answers
235 views
CSS : How do I vertically-center align text in a div ? (or any other elements which is not a table)
To vertically-center align text in a table-cell, I use vertical-align: middle in the td.
But the above doesn't work with divs, spans, header and other non-table elements. So how …
0
votes
3answers
384 views
Different css rendering for span inside td with FF3.5 versus FF3.0
I have a web page that has a table and inside one of the td is span that uses a smaller font, float right to place it to the far right, and a negative margin-top, so it is aligned …
