Tagged Questions

-1
votes
2answers
149 views

help with getElementsByTagName setAttribute and regex javascript

i want to put rel=lightbox to some links that mediabox support using javascript. i try this and wonder why it's not working? test: http://jsbin.com/opica please help edit this: …
0
votes
3answers
1k views

setAttribute, onClick and cross browser compatability…

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"); …
0
votes
1answer
115 views

set an attribute in XML node usig MSXML. I am struck

I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setatrribute. So i got the document element. pXMLDocumentElement -> get_documentElement (& …
0
votes
2answers
833 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. …
2
votes
4answers
410 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); …
4
votes
4answers
3k 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?
0
votes
1answer
31 views

Please guide me to set an attribute in XML node usig MSXML. I am struck.

I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setatrribute. So i got the document element. …
2
votes
1answer
369 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 …
0
votes
1answer
123 views

get one Attribute id, set as another Attribute id

I'm currently using scriptaculous and prototype to drag/drop elements from one div to another, and append a new Element based on the 'src' of the element that is dropped, creating a new draggable out …