Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
494 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 - ...
5
votes
5answers
16k views

Using request.setAttribute in a JSP page

Is it possible to use request.setAttribute on a JSP page and then on HTML Submit get the same request attribute in the Servlet?
3
votes
4answers
8k views

setAttribute, onClick and cross browser compatibility

I have read a number of posts about this but none with any solid answer. Here is my code: // button creation onew = document.createElement('input'); onew.setAttribute("type", "button"); ...
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
71 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
2answers
54 views

How to set class attributes in vb.net?

Python has a setattr to set public attributes for any class on the fly. So, how to do that with VB.net ? I mean : Public Class abc ... End Class ' Set it as : abc.setattr("prop", 5) ' Use it as ...
2
votes
4answers
731 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
2answers
417 views

Grails - Set “disabled” attribute name and value in GSP

I´m trying to do this without success: <g:textField title="${title}" ${disabled} /> I want to apply a disabled attribute, ONLY if the ${disabled} variable is TRUE. I don't want to use ...
2
votes
1answer
139 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
2answers
957 views

Webbrowser SetAttribute not working (Password Field)

tried to write a program which logs me in automatically in a webbrowser in c#. This is the code i use at the moment for this purpose: HtmlElementCollection pageTextElements = ...
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 + "', ...
2
votes
6answers
1k views

Why can't I disable this XUL menuitem?

I'm at my wits end, and it's probably something really simple.. But I've got basically this code: var menuitem = document.getElementById('mymenuitem'); alert(menuitem); alert(varImChecking == null); ...
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
1answer
63 views

webbrowser control SetAttribute does not respond programmatically

i have application and i need to add text programmatically to some fields it works in most pages but in www.google.com when i try to but value to search, it did not work until i clicked on the text ...
1
vote
4answers
63 views

Changing CSS class with JavaScript has no effect

I want my nav bar (that is in the form of a list) to stay invisible (display: none;) on page load, and to appear when something is clicked (currently using a button) here is my HTML code: ...
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
130 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
5answers
406 views

Can I use setAttribute to set div's html value like $('#div').html(“value”);

I can't use the basic $('#div').html("value"); to change the text of a div like I'm used to. Instead I'm trying to use div.setAttribute(...). Is there any way to set the "html" using it? Sorry for ...
1
vote
1answer
241 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
2answers
134 views

is there a better way to do this

so i have a loop in vb.net that loads a webpage, fills out a form and clicks submit I currently am using these for, respectively, waiting for the webpage to load, filling out the form, and clicking ...
1
vote
1answer
318 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
1answer
543 views

add attribute in product information -> Inventory tab

Hey, I just realise how easy is to add attributes to the form products in ADMIN, and its working perfectly. So similarly to setting attributes for General, Prices, Meta Information, Images, Recurring ...
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. ...
1
vote
3answers
147 views

Is it possible to dynamically name attributes in an App Engine Model?

setattr allows you to dynamically name attributes in Python classes. I'm trying to do something similar with an App Engine Model: class MyModel(db.Model): def __init__(self, *args, **kwargs): ...
1
vote
1answer
338 views

Modifying Existing XML Content in C#

I found some examples about this subject. Some of the examples gived a method to modify attribute with SelectNodes() or SelectSingleNode(), and others gived the method to modify attribute with ...
1
vote
0answers
349 views

cannot use HttpSession.setAttribute method when compiling via JavaCompiler tool library

I am using the following code to generate and compile java program inside another java program: import javax.tools.*; JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); compiler.run(null, ...
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
1answer
19 views

How to unset a Qt attribute

I am setting an attribute using setAttribute( Qt::WA_OpaquePaintEvent ); Is there a way I can unset this attribute? Or is there a default attribute that I need to set to get it back to the way it was? ...
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
1answer
36 views

multiscreen app content

I have a multiscreen app that is up and running and you can press four buttons.One to list phone numbers one to list dinning halls one to list residence halls and one for academic buildings.
0
votes
2answers
45 views

Rails: How to receive non-model form input, convert it to a model attribute, and then save that model

Background: I have a form_for mapped to a model called List. List has attributes: name, id, receiver_id, assigner_id. I want the user( or list assigner) to be able to choose a list receiver. I want ...
0
votes
0answers
31 views

setAttribute not working in FireFox 3.6

Just soft-launched my new site. I've tested in almost all relevant browsers, EXCEPT for FF 3.6. Friend pointed out videos weren't playing... I've fixed that, but now I'm not sure why I can't get the ...
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
1answer
93 views

how to set name property dynamically in display attributes in silverlight 4

I want to give name property dynamically in the display attributes for any property. for exam: [Display(Name = "Test")] public bool Task1 { get { return this.m_Task1; } ...
0
votes
0answers
69 views

HtmlUnit onclick problems within frames

I'm using HtmlUnit to do some automation I need done. The site I'm using uses frames past the login page unfortunately so it's getting a little tricky. Here's what I need done... There's a search bar ...
0
votes
0answers
184 views

Magento 1.4.2.0 Call to a member function setAttribute() in app/code/core/Mage/Customer/Model/Attribute/Data.php on line 80

I'm getting the above error when using an extension that worked on 1.4.1.1. The extension implements custom attributes. I managed to fix one problem, but now when I try to create an order for a ...
0
votes
1answer
79 views

How do I set an Attrib to the label and not the element in a zend form

Usually I would set up a send element by using the following $question = new Zend_Form_Element_Text ("question"); $question->setLabel("Question") ->setAttrib('class', 'bob'); Here I have ...
0
votes
1answer
113 views

Trying to dynaimcally create properties at runtime with Python using reflected data

So I'm trying to figure out if what I want to do is even possible. I am writing some test code for an application, and I have objects that contain properties representing some of the elements we have ...
0
votes
2answers
112 views

Detecting if JSP loads for the first time

I want to implement a single JSP markup page that is a form like this: JSP: formPay.jsp <form action="<%=request.getContextPath() + "/Pay.do"%>" method="post" id="guest"> ...
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
0answers
493 views

JPA/Criteria - Select (or multiselect) on SetAttribute

I am getting really frustrated trying to use JPA criterias (I am using Hibernate implementation).. I want to make a query where the select is on a Set of objects, but I can't make it work.. Here is ...
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
516 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
0answers
138 views

php: max-width ignored by setAttribute() on a DOMNode

For a bit of background, I am writing code to parse embed code and tweak the style. In theory I want it to accept any html even if it doesn't have an embed tag, so the code below just styles the first ...
0
votes
2answers
82 views

Adding referrals to links

I'm trying to dynamically add a link to the beginning of all the links in an RSS feed. So far I have this which looks to me like it should work. What am I missing here? <?php $id = $_GET['id']; ...

1 2