0
votes
3answers
46 views
calling a variable inside html
I am trying to make a script that when you type in a hex value and press submit itchanges the text color to the color inputted.
It seems the problem is the way i am calling the va …
0
votes
7answers
74 views
Why does jQuery 1.3.2 not find an existing control by ID - what am I doing wrong???
I have a complex html-Form and am using jQ for some of the work there. And spent the best part of this afternoon trying to understand a problem which I was able to trace back to th …
0
votes
3answers
36 views
What is the most effective way to create a reference to this HTML element using plain JavaScript?
If I have the following HTML:
<div id="container">
<iframe></iframe>
</div>
What is the most effective way (mainly in terms of performance) to create a …
-1
votes
2answers
48 views
Problem with getElementbyId
I'm having a problem with getElementbyId as follows:
<script type="text/javascript">
<!--
function show_links(locale) {
var box = document.getElementById(locale);
…
0
votes
1answer
29 views
Problem with Javascript not inputting value into hidden fields
Maddening problem here.
When my page loads: <body onload="getClientDateTime();">
It runs this function: document.getElementById('ClientDateTime').value="hello world";
Wh …
0
votes
1answer
43 views
javascript and greasemonkey question
i wanna get a price inside a page and then multiple it by 0.93 then write the result after first price. but i couldn't be able to grab the price from page.
for example i want to …
0
votes
3answers
187 views
JavaScript: get value of dropdown
I have 3 HTML combo/drop down boxes. All of them have a distinct name and id.
On a particular event I want to get the value of all three of them.
Can any one give me a code snippet …
0
votes
4answers
251 views
getElementById.contentDocument error in IE
<html>
<script type="text/javascript">
function func() {
alert(document.getElementById('iView').contentDocument);
}
</script>
&l …
0
votes
4answers
69 views
document.getElemenyById not working in one file but working in other
this function is running in one of my files but not working in other one, i have checked all the names etc but couldn't find.....
in first file
<script type="text/javascrip …
1
vote
5answers
146 views
Frustrating problem with JavaScript’s getElementById()
I'll firstly admit I'm a lot more productive when using jQuery, however I've been asked to implement a gallery written in vanilla JavScript. My normal javascript DOM skills are onl …
2
votes
4answers
218 views
document.getElementById(variable) Help!!
Hi All,
I know it can be done but am having issues getting it to work. Basically I want to change the font color of a specific table cell based on a variable which changes daily, i …
0
votes
1answer
442 views
AJAX document.getElementById().innerHTML problem with IE?
Before someone said that I did not read I may say that I read almost everything linked with my question. But I couldn't find my answer.
So, I have a simple AJAX script that loads m …
1
vote
3answers
67 views
JavaScript prototyping tutorial
I have a JS script with tons of functions, on big on is this:
function id(i) {
if(document.getElementById)
return document.getElementById(i);
return;
}
It just s …
1
vote
3answers
1k views
MSIE : jQuery’s append()/html() not working, resorted to getElementById().innerHTML
Hi StackOverflow,
This is a long one,
The Premise
Was called in to help out a client with some bug fixing on a current project of theirs. What needed fixing was a jobs listing p …
-1
votes
3answers
156 views
JavaScript getelementbyid problem
When we use getelementbyid in JS the browser ask to allow or block the script, is there a piece of script to automatically allow that or avoid that or is there an alternative for t …
