Tagged Questions
10
votes
1answer
497 views
JavaScript setAttribute vs .attribute=
Is there a best-practice indication about using setAttribute instead of the dot (.) attribute notation?
e.g.
myObj.setAttribute("class","nameOfClass");
- and -
...
3
votes
3answers
2k views
Google Chrome breaks when onfocus sets select size
The following javascript to resize a select list breaks in Google Chrome. It works when tabbing into the field, but clicking on it results in the "Aw, Snap!" error page.
<select ...
2
votes
1answer
57 views
Attributes added using setAttribute aren't processed by the behavior
For example if I am doing a.setAttribute("begin", b+".focus"); it shows up in the HTML tab of the dev tool but it's completely ignored by the behavior (if I add begin="time1.focus" directly in the ...
2
votes
1answer
62 views
Javascript: setAttribute() v.s. element.attribute = value to set “name” attribute
So I'm learning to manipulate the DOM and I noticed one interesting thing:
Let's say I want to set the name attribute of an element by using the "." dot notation:
element.name = "someName";
...
2
votes
2answers
73 views
How to set a inner value for Input tag in HTML in IE
I am trying to set dynamically innerHTML for value tag in IE.
The output I expect is this.
<input type="hidden" >a0FQ0000009rJfCMAU</input>
I tried innerHTML in IE but it was not ...
2
votes
2answers
76 views
javascript document.getElement.setAttribute doesn't work
I have this problem:
On this website: http://www.azercell.com/WebModule1/mainservlet?cmnd=sms&lang=en
I'm trying the following script, it works fine with C#, but javascript nope, why?
...
2
votes
4answers
741 views
onclick setAttribute href from a src
I'm working on a project to swap thumbnail images to a larger image when the thumbnail is selected and it's working ok however, I would now like the end users to be able to click on the larger image ...
2
votes
1answer
141 views
How do I insert new attributes dynamically to xml tags using javascript?
I have some xml like the following:
<dict>
<key>Track ID</key>
<integer>4896</integer>
<key>Name</key>
<string>Let ...
2
votes
3answers
3k views
HTML changes with element.setAttribute(“onclick”,“alert('Test');”) and element.onclick = “alert('Test');”;
I got surprised when comparing the following cases:
button = document.getElementById("addSugerenciaButton");
if (button != null) {
button.onclick = "post_to_url('" + addSugerenciaURL + "', ...
1
vote
1answer
54 views
Dynamic Created Element In iE9 Event doesnot work
var ibutton = document.createElement('input');
ibutton.setAttribute('type', 'button');
ibutton.setAttribute('name', 'button');
ibutton.setAttribute('value', 'Delete');
ibutton.setAttribute('onclick', ...
1
vote
2answers
133 views
To use getAttribute(), or not to use getAttribute(): that is the question [closed]
Possible Duplicate:
JavaScript setAttribute vs .attribute=
javascript dom, how to handle "special properties" as versus attributes?
Many times, in forums or places such as ...
1
vote
3answers
131 views
JavaScript setAttribute not working
I've been trying to use setAttribute to change the name of the select tag from the oldName to the newName, however when I load the page and then look at the source, the oldName remains. Ultimately, I ...
1
vote
1answer
245 views
IE7 and setAttribute() to remove classes
I've got a pretty interesting issue.
I'm writing a plugin which allows you to zoom in/out an image. I've got 3 buttons: close (close the 'window'), zoom in, zoom out.
The buttons zoom in/out have got ...
1
vote
1answer
319 views
node.setAttribute causes INVALID_CHARACTER_ERR
I have the following code in a function:
this.HtmlRef = document.createElement( "canvas" );
if (!this.HtmlRef)
{
return false;
}
this.HtmlRef.appendChild( document.createTextNode( ...
1
vote
3answers
2k views
How to access id attribute of any element in Raphael
I'm using Raphael for drawing some elements on a website. The elements include rectangle, line (path). I have given an id to the path element and trying to access it in the onclick event of that line. ...
0
votes
2answers
32 views
insert array into location.href
I have a program that places input buttons on a form. When a user clicks on the button the onclick attribute uses location.href to direct it to a link.
elementButton_1.setAttribute("onclick", ...
0
votes
3answers
39 views
How to use javascript or jquery to modify a :before psedo-element attribute?
I am trying to modify the "left" attribute of a pseudo-element :before. I am having no trouble modifying any other elements using either JavaScript or jQuery, but seem to be stuck when trying to ...
0
votes
2answers
60 views
JavaScript event using reflected property doesn't return can't see rest of array
Working with JavaScript in IE, I used the reflected property but the problem is I have 12 items and all of alert 12.
When I use setAttribute, there's no problem.
What I have so far:
var items ...
0
votes
3answers
116 views
Javascript - getElementById returning null despite elements with given IDs existing on page
I am writing a number of functions to show and hide various divs on a page by applying style classes called "hidden" and "visible" using setAttribute. This function is intended to hide several divs at ...
0
votes
4answers
285 views
onclick setAttribute workaround for IE7
I can't seem to get this:
top.document.getElementById("clickThis").setAttribute("onclick", "tinyMCE.execCommand('mceInsertContent',false,'<div style=\"width: 600px; margin: 0 auto .5em;\" ...
0
votes
3answers
313 views
can't set attribute with javascript
well here's my problem, it's probably my own very obvious and stupid mistake which I can't seem to notice, I haven't worked with javascript much.
I think this code is pretty obvious, i'm displaying 3 ...
0
votes
2answers
134 views
element.setAttibute() method how to make it work in I.E?
I am setting the style attribute of a text via js element.setAttribute() method with name=style and value="my modifications to the style of text"
it is working well in browsers other than IE ..
In ...
0
votes
6answers
519 views
JQuery .attr not working in Chrome
I'm using a :regex library (found here) to select elements that have IDs starting with P and having at least 5 digits afterward. Then, I use .attr to add on some attributes.
...
0
votes
2answers
417 views
set HTML Atribute using JavaScript
i have a navigation bar below
<div id="cmenu" class="cmenu r">
<div id="help"><a onClick="topMenu('help','current')" ...
0
votes
1answer
623 views
Internet Explorer “setAttribute” onclick workaround?
var tr = document.createElement('tr');
tr.setAttribute("onclick",p.onrowclick+"("+row.id+")");
Hi, the above works fine for me in Firefox. I can't find the correct syntax for a workaround in IE.
...
0
votes
1answer
446 views
Using setAttribute with an array of Raphael paths
When 'things' in the following code is an array of paths...
things.square = [ RM.path("m 154.21525,71.431259 74.32805,0 0,70.496711 -74.32805,0 0,-70.496711 z").attr(attr),
...
0
votes
2answers
679 views
getElementByClassName -> getElementsByTagName -> setAttribute
I want open certain links in a new tab. Since I can't set it directly into the a tag, I want to pot the link into span tags with a ceratin class name and set the target attribute via javascript.
I ...
0
votes
2answers
1k views
Javascript's object.onClick runs the function instead of setting onClick, how can I prevent that from happening and only execute the function onClick?
I have the following code:
function sdefaults()
{
alert("test");
}
var btnpos, sbtn;
btnpos = document.getElementsByName('somePosition')[0];
sbtn = document.createElement('input');
...
0
votes
2answers
6k views
How to Set OnClick attribute with value containing function in ie8?
My goal is to change the "onclick" attribute of a link. I can do it successfully, but the resulting link doesn't work in ie8. It does work in ff3.
For example, this works in firefox3, but not ie8. ...