The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

Javascript: set image class based on width executes only after reload

I'm making an image heavy website, so I've written a function that dynamically creates the anchor and image tags with their corresponding attributes, so I don't have to manually enter in all the ...
0
votes
1answer
14 views

Setting Attribute in Servlet results in null

I try setting an attribute for a session and want to assign a String to it, that is displayed later in a jsp. I have the following code: The System.out results in null even thought the String was ...
0
votes
2answers
31 views

Howto add fade in / fade out to this thumb preview

How can I add some fade-in on hovering the thumbs? http://jsfiddle.net/GAa7D/1/ The magic js which needs fade: function showT( image ){document.getElementById( 'ima' ).setAttribute('src',image )} ...
1
vote
1answer
38 views

Error code in javascript?

window.onload = function() { var links = document.getElementById('subMenu').getElementsByTagName('a'); for(var i = 0; i < links.length; i++) { links[i].onclick = function() { ...
-3
votes
0answers
66 views

what's wrong with this javascript code? [closed]

window.onload = function() { var links = document.getElementById('subMenu').getElementsByTagName('a'); for(var i = 0; i < links.length; i++) { links[i].onclick = function() { ...
-1
votes
1answer
121 views

javascript type error: Cannot call method 'setAttribute' of null

I'm trying to change the value of a button from 'send' to 'sending' when it's clicked. I get the error above called on this line: ...
0
votes
1answer
86 views

Javascript set value of an input field

Since while I cannot set the value of an input field with type=text. Before, I always used something like this: <input style="display: none" type="text" name="geo_poi" value="" id="geofeld" /> ...
2
votes
3answers
126 views

Change class attribute of td by onmouseover

I'm constructing a table. And I need a <td> of table change it's attribute class to someattribute till mouse over. How should it be? Code: var table = document.createElement('table'); for ...
0
votes
1answer
108 views

TypeError: node.setAttribute is not a function

I'm getting an error: "TypeError: item.setAttribute is not a function" when I try to call the following function on my webpage: function list() { var colors = document.getElementById('colors'); ...
1
vote
1answer
50 views

Javascript setAttribute in IE9

So I'm trying to make a table hidden when the webpage opens but when a is clicked it should show but I'm having problems with IE9. I read that IE8 and below do not support setAttribute and my webpage ...
1
vote
2answers
106 views

Change svg polygon attributes via Javascript

I am trying to scale and translate svg polygon elements, depending on the browser window size. Calculating how much I want to scale and translate is not the problem, but changing the polygons is for ...
1
vote
3answers
70 views

How to include an Array and a Incrementing Variable into a getElementById Statement?

I am trying to disable dynamically created drop down menu options (depending on the users interaction with other menus options) and I am running into an error stating that "null" is not an object. On ...
2
votes
0answers
88 views

setAttribute the only option to set list = <id datalist> in input element?

I'm gettint stuck with setting the list property of a list element. var sel = document.createElement("input"); sel.type = "text"; sel.id = "inputSelectNaam"; sel.list = "inputNamesList"; Of course ...
4
votes
1answer
120 views

Getting a random internal selfref error in data.table for R

I love data.table, it's fast and intuitive, what could be better? Alas, here's my problem: when referring to a data.table within a foreach() loop (using the doMC implementation) I will occasionally ...
2
votes
3answers
129 views

Replace setAttribute with IE compatible script

I am trying to create a pop-up message that disables the rest of the screen until you confirm it, only by using CSS and JavaScript (and without the alert function). Although ...
0
votes
1answer
39 views

append custom attribute to a dynamically created node javascript

I need to set the attribute of a node that I created through Javascript. However, it's becoming quite complicated because of where values are located in different functions throughout the script. I ...
0
votes
1answer
48 views

passing values and setting attribute

I'm trying to set the attribute of an item I created dynamically with Javascript. However, I'm not sure how to pass the value to the item in this case. function getFormData() { //gets date value ...
0
votes
1answer
117 views

setAttribute width for canvas as percentage value

i´m working on a WebApp where Users can draw on a Canvas with their Mobile Phones and Tablets. My Problem is that if i specify the size of the canvas as percentage value in CSS, the TouchDraw-Script ...
0
votes
2answers
102 views

How to replace old value between XML tags with new value

I have to replace the oldValue in the date tag with the newValue in the below XML. I am using setAttribute function to do that but it doesn't seem to work. Please do let me know if I have to use a ...
1
vote
3answers
60 views

how to change css img element with javascript

I would like to change the CSS using javascript so that I can dynamically adjust the height of a single image on my web page. This is being done so that the image will fit nicely in the viewable ...
1
vote
3answers
48 views

trouble with setAttribute

function Todo(id, task, who, dueDate) { this.id = id; this.task = task; this.who = who; this.dueDate = dueDate; this.done = false; } function updateDone(e) { var ...
0
votes
1answer
75 views

assigning id with setAttribute

function createNewTodo(todoItem) { var li = document.createElement("li"); li.setAttribute("id", todoItem.id); var spanTodo = document.createElement("span"); spanTodo.innerHTML = ...
0
votes
2answers
76 views

Use setAttribute in Phonegap

I'm new in using phonegap and I have some problems. I've created a webbased application which is running pretty nice in the browser (also on android). Now I want to port it to a phonegap-application. ...
0
votes
1answer
149 views

Putting JSON into HTML attribute using PHP's setAttribute, double quote issue

MY MISTAKE: Never mind, I'm an idiot. I was viewing the code inside the browser, when I output it as a string it's showing up as single quotes, browser is just displaying double quotes in the view ...
0
votes
1answer
902 views

Javascript Pass Element ID Attribute as Parameter

This statement works. On the click of the node, i get a message displaying its ID. newnode.setAttribute("onClick", "alert(this.id)"); I need to pass the value of this.id to a different function ...
0
votes
2answers
271 views

Multiple “document.getElementById” scripts doesn't work

Multiple IDs works fine when I'm using HTML #1 but doesn't work when I'm using HTML #2. Chrome web console shows >> "Uncaught TypeError: Cannot call method 'setAttribute' of null ". In html#2 ...
1
vote
2answers
69 views

How to set a fallback image for img setAttribute

I have an img element: var photo = document.createElement("img"); which is feed by photos with name stored in an array of objects, so I "feed" the photos like this: photo.setAttribute('src', ...
1
vote
1answer
157 views

setAttribute(“transform”,…) doesn't work on <symbol> element

I need some helping in svg/javascript programming. I made a SVG Graphic in which the elements "Stern" should rotating by the onmouseover-event. We are not allowed to use the svg-animations and the ...
0
votes
2answers
78 views

Javascript DOM - Set cell attribute to image?

I have a small predicament. I'm dynamically trying to set a table cell html to an image, based on sql response.. My method below just isn't working.. var data = document.createElement("td"); if ...
0
votes
0answers
167 views

Setting attribute of htmlElement doesn't work

I have encounter a strange problem. I am trying to login a website using a webbrowser by setting the value attributes of two inputs and invoking a click on a submit input, one input is for a username ...
1
vote
1answer
139 views

node.setAttribute('attName',null) returns type mismatch

The following code returns type mismatch Error in IE9. node.setAttribute('attributeName',null); but node.setAttribute('attributeName',undefined) doesn't give an error. And this is also fine: ...
0
votes
1answer
147 views

GWT using setAttribute in IE7 from inside an iframe

I have a GWT web app. When I use element.setAttribute("style", myAttributeList); it perfectly works for IE7 (*) Now comes the tricky part. I embed my web app, served at http://www.myGWTApp.com, ...
1
vote
2answers
106 views

How do I control a css child property with javascript?

I'm familiar with how to set the attribute of a css id with js like so in a function: idOfMyCSSElement.setAttribute("style","color: #122362;"); I'm wondering how I can target nested divs or other ...
0
votes
1answer
102 views

Change DIV margin on interval

I am trying to change the margin of each element, using setAttribute. How can I able to use my variable dist "distance" to decrease value until 10, every after delay "interval"? var dist=200; var ...
1
vote
1answer
155 views

how to change the value of the dynamically created button in javascript

Requirements: I have one table with one row and three columns.first column has button ,second column and third column has text box and check box. if i click that button one new row is added ...
3
votes
2answers
765 views

Difference between setattr and object manipulation in python/django

I have the following model: class Ticket(models.Model): title = models.CharField() merged_to = models.ForeignKey("self", related_name='merger_ticket', null=True, blank=True) looser_ticket ...
1
vote
3answers
111 views

Creating dynamic CSS in Javacript

I am trying to create an info window for Google maps and need to generate a dynamic form to display information. The following scripts generates an error called "No_found_err: DOM exception 8": ...
0
votes
2answers
252 views

Javascript setAttribute from Array

I have a css file with classes and an array with these classes stored as such: myArray[0] = myClass1 myArray[1] = myClass2 // etc... I have tried several methods now and searched for an answer on ...
1
vote
1answer
202 views

Mongoid - Unable to set/get attribute in some cases

I have a simple model class: class Sentence include Mongoid::Document include Mongoid::Timestamps field :content, :type => String field :num_votes, :type => Integer field ...
0
votes
2answers
441 views

javascript trouble with the setattributefunction

I use a form that display some div depending on which option you click of the radio button. The thing is that the div is set to be none displayed, except if I select an option. So I added the ...
0
votes
1answer
329 views

Pass multiple Javascript values with submit method to php isset?

I've got a <select element on a php/xhtml page. Instead of using a submit button, I'm trying to implement the Javascript onchange() and submit()method. I need to pass multiple variables to make ...
0
votes
1answer
237 views

Why the “setAttributes()” doesn't work properly while using cordova plugin?

I want to create a plugin that connect to javascript while using cordova for the plugin, this is my javascipt code : var Brightness = function() {}; Brightness.prototype.brightnessUp = function( ...
0
votes
2answers
234 views

Set attribute before include jsp

consider this situation: <!-- main.jsp --> <% for (int i = 0; i < 10; i++) { %> <% request.setAttribute("i", new Integer(i)); %> <jsp:include page="template.jsp" /> ...
3
votes
2answers
2k views

setAttribute and video.src for changing video tag source not working in IE9

I have literally read every stackoverflow thread regarding changing the video tag source dynamically via javascript in IE9, including the useful but not agreed upon posts here and here, but do feel ...
0
votes
0answers
69 views

style attribute issues in html, attribute becomes empty on some action [closed]

i have a big number of li in my ul when i set the attribute of the li to object.style.display='none'; it reflects back in my jsp page <li id="myid" class="list_badges" style="display: ...
1
vote
1answer
279 views

Java DOM setAttribute not working

Can someone tell me why this isn't work? It's driving me crazy. myFile.xml <?xml version="1.0" encoding="UTF-8" ?> <root date="oldValue" /> Java Code try { Document doc = ...
0
votes
1answer
2k views

Passing Attributes from JSP to Servlet to JSP

So, I have a JSP form that just takes in a query string, passes it to a servlet, which then sets some HttpServletRequest attributes and forwards to another jsp. For some reason, in the final jsp, all ...
0
votes
3answers
239 views

Setting Namespace Attributes on an Element

I'm trying to create an XML document in Java that contains the following Element: <project xmlns="http://www.imsglobal.org/xsd/ims_qtiasiv1p2" xmlns:acme="http://www.acme.com/schemas" ...
0
votes
2answers
113 views

textboxes not dynamically updating properly in javascript

Here is how I create the textbox: box = document.createElement("input"); Here is how I change the text: box.setAttribute('value',myString); However, each text-box becomes permanently ...
0
votes
1answer
279 views

how do you set session attributes with java.net.URLConnection?

how do you set session attributes with java.net.URLConnection or its subclasses? In other words, what is the equivalent of HttpSession.setAttribute(String, Object) in Java.net.URLConnection? ...

1 2 3