Tagged Questions
0
votes
2answers
25 views
Grabbing Name attribute of Tags/Tag in Rally
I have been looking at the rally Object model, but I can't figure out how to grab the Name attribute of a Defect's Tag.
I made sure to include Tag and Tags in my fetch statement. I am storing all the ...
0
votes
2answers
22 views
html “data-” attribute as javascript parameter
Lets say I have this:
<div data-uid="aaa" data-name="bbb", data-value="ccc" onclick="fun(this.data.uid, this.data-name, this.data-value)">
And this:
function fun(one, two, three) {
...
0
votes
2answers
63 views
How do I pass multiple attributes into an Angular.js attribute directive?
I have an attribute directive restricted as follows:
restrict: "A"
I need to pass in two attributes; a number and a function/callback, accessing them within the directive using the attrs object.
...
0
votes
2answers
85 views
How to set attribute (id) at collection fieldset (doctrine 2, zend framework 2)
is it possible to set an id at a fieldset that's made by a collection? I've a couple of entities (user, addresses, attachments etc.), and in my user-entity i've several fieldsets that are made with a ...
0
votes
1answer
29 views
javascript setting attribute of prototype to attribute of object
To begin with, I don't fully understand the prototypal structure of Javascript so this may not be possible.
If I have ...
var vector = function( x, y ) {
this.x = x || 0;
this.y = y || 0;
}
...
1
vote
1answer
39 views
Javascript Dynamic HREF Creation from XML Element Attribute Values
I want to use javascript to create dynamic HTML links from the attributes of an xml file.
I have used the following code to successfully write a list of all of the xml element atrributes (file names) ...
0
votes
1answer
60 views
PHP Equivalent to this Javascript [closed]
I have a HTML template with DIVs holding schema.org markup. The DIV content is populated
via PHP but some DIVs are left blank/empty when we lack the data to put in them. Currently, we can hide the DIV ...
1
vote
1answer
40 views
how to get all attributes of node in certain namespace xml javascript
I have a node from an xml document. It has several attributes on it from multiple namespaces. I want to find all the attributes from the fo namespace. How can this be done? e.g. from the following I ...
0
votes
2answers
52 views
How do I make my own attributes (HTML5)
I implemented a moveable div function in JS (moveableFunc). I used onclick="moveableFunc(event ,this)" for each div (or element) to move it. I prefer to use this function as a attribue and the code ...
0
votes
1answer
51 views
jQuery Concatenation or selector issue
I have the following:
changeDegreeLabel: {
"Certificate" : "Diploma"
}
this.changeDegreeLabel = function(labelReplacements)
{
this one works
$.each(labelReplacements, ...
1
vote
2answers
28 views
How to append values to the custom data stored in an element
Let's say I want to store some custom value in a element, I would need:
$('div').data('k','v');
But now I need to add more data to that element: v2.
The only way I could come up with is to somehow ...
0
votes
0answers
66 views
add or remove controls attribute from html5 <video> tag
I am looking for a method to add the controls attribute to a video tag based upon the user agent string.
I do not wish to have the controls attribute present on any browser or device other than ...
0
votes
2answers
41 views
how to retrieve an image src attribute from a popup to the parent page
I call a js function from the popup like this:
<img onclick=parent.updateFunction('"+ item.id +"','"+ item.image +"','"+ item.label +"'); src=/mypath/ />
this is how I try to display the src ...
0
votes
2answers
27 views
Javascript delete object from object
i have following function that should delete an object in object under following id:
contactDeleteCounter++;
console.log(orderContactIds);
console.log(deletePosition);
...
0
votes
2answers
55 views
How to get a specific element from a jQuery object by its attribute value?
I have a website with a couple of elements like this:
<g class="box" rel="1">...</g>
<g class="box" rel="2">...</g>
<g class="box" rel="3">...</g>
<g ...
0
votes
1answer
67 views
Get all attribute properties [duplicate]
I would like to get all the attribute properties with a Jquery event. I know I can retrieve info of the element by doing something like this:
$(this).attr('id');
So if I want to include the class I ...
0
votes
0answers
27 views
Attributes are zeroed upon page refresh
In my HTML page I have the following definition:
<img style="cursor: pointer;" src="src.png" id="USED" name="USED" class="USED" onClick='func(this)'/>
I'm using this img as a checkbox, and ...
1
vote
1answer
34 views
Changing one 'attribute' of a href depending on screen size
Dear stackoverflowers,
I'm trying to change the 'data-placement' attribute in my href, depending on the screensize. Somehow I cannot get it to work. The desired goal is to change the ...
0
votes
2answers
53 views
How do I use jquery's prop() to set the attribute of a checkbox?
I want to use prop() to set the attribute of a checkbox to checked.
When I use prop("checked",true) I can visually see that the checkbox is checked, but if I look at the HTML there is no attribute ...
1
vote
2answers
90 views
Is it bad to add JSON on HTML data attribute?
Since HTML data attribute allows adding any custom data, I wonder if it is a good idea to include a set of JSON list as a data attribute? Then, the corresponding JSON can be easily accessed by ...
0
votes
3answers
28 views
title attribute array
Hi I'm getting the title attribute "Knit, Main". At the moment the var thinks that it is one word is there some symbol like "," that will make the var handle them in an array?
title="Knit, Main"
var ...
0
votes
1answer
40 views
a native JS quick way to check for existing attribute=property?
2 part question
1) what's the quick/simplest way to check for an attribute set to a specific value?
i have a JQuery loop that appends
data
.. i needed to test for duplicates.. therefore i have ...
1
vote
2answers
97 views
Why does (file.lastModifiedDate == file.lastModifiedDate ) evaluate to false in JavaScript?
Seems like the following code should return a true, but it returns false.
How does this make sense? Is it right?
I tested it on Chrome and Firefox as well. Both are return false.
Test Code
...
0
votes
4answers
72 views
How do you check an items attribute and swap it for an image using jQuery?
I have a list of items, each having an attribute containing a list of locations.
What I would essentially like to do is some type of "if statement" (i assume) to check of the "container" attribute, ...
1
vote
1answer
86 views
How to get a custom mvc3 attribute to validate client side
I have written a custom attribute but it does not seem to work client side. It only works on the server when i call the ModelState.IsValid() method. I read somewhere online that i needed to register ...
0
votes
1answer
55 views
Convert attribute into string
I know this is really basic javascript but I'm really not so familiar with javascript.
What I'm trying here is to add prettyPhoto arguments where I want to be. First I get href attribute from link, ...
0
votes
2answers
115 views
Get HTML Source with Values attributes set for Input
I'm using jQuery to send an HTML document which contains a form to a C# WebService.
The webService parse it and try to read "value" attribute of all inputs in the form.
The problem is that I send the ...
0
votes
2answers
60 views
Syntax for Using JavaScript for HTML Attribut Values
I'm trying to replace the value of an html element's attribute with javascript. I'm pretty sure I've seen it done before, but I'm not sure how the syntax works on such things. Example:
<a ...
2
votes
0answers
83 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 ...
0
votes
2answers
65 views
Insert text, attributes and paths on condition
I would like to use the values from an array to populate a web page. The values should replace text between spans (this already works) but at the same time some values from the array should be used as ...
0
votes
1answer
107 views
JS syntax for checkbox name attribute with square brackets
This function limits the number of checkboxes selected by the user, but I'm having trouble getting it to work when the name attribute has square brackets (i.e. name=baz[]).
For some reason I can't ...
0
votes
2answers
33 views
Passing a js var into jquery action as attribute
var temp="path.png"
How can I pass temp var into the jquery function as shown below
$('#mapfoto').prepend('<img id="theImg" src="http://path.gr/"+temp />')
1
vote
1answer
161 views
How to remove an attribute in D3.js?
Can I in D3.JS remove an attribute? I've added it using .attr("disabled", "disabled") and now I am looking for something similar to jQuery's .removeAttr("disabled", "disabled"); to remove it again. ...
-1
votes
1answer
38 views
Order of Attributes in HTML Tag [duplicate]
I know it doesn't matter what order you put attributes in an HTML tag, but I maintain a consistent pattern for readability/debugging reasons. However, I'm going to need to violate my pattern because I ...
0
votes
1answer
61 views
Issue with jQuery data
I'm struggling a little. I'm attempting to utilize the cool feature of assigning a custom attribute to an element. However it isn't working.
Basically, I'm trying to assign multiple elements to the ...
0
votes
3answers
49 views
How can i select elements on dom (with jQuery) that has some data attribute that ends with “created”?
I have all my elements, on a project, that are being transfered with data attributes so the javascript can know what to do.
But i have one problem, one part of the application must get all the ...
0
votes
2answers
114 views
Javascript and Parsed JSON - Child node's ['@attributes'].type returns undefined
I've parsed a legitimate JSON object and I'm walking through the multidimensional array to first find the year based on a function argument and then the month within that year.
My for loops are ...
2
votes
6answers
77 views
javascript increment (more than ++) style attribute
I'm having some trouble in moving a div tag over with onclick. I can get it to move once but then I don't know how to get the new variable and add to it again.
NO jquery please and I'm not really ...
0
votes
0answers
45 views
javascript svg html points
I am using jsDraw2DX from jsFiction to draw some polygons. I have assigned each one to it's own tag with an id convention of Hgon. jsDraw2DX insists on nesting its own tag inside the ones I've given ...
1
vote
0answers
66 views
address javascript variables
Still fighting with validations. Removed data-* from the html < script> tag which were not liked by validator by the workaround: having ID= attribute for script, and setting those variables by ...
0
votes
1answer
47 views
jquery attr() not returning expected value
I am using jQuery and would like to retrieve the 'id' attribute
of a clicked element, which in this case is a element.
Kindly check the image below. Notice that the returned string whenever
I use ...
0
votes
3answers
127 views
Image gallery next button update alt from ID
I am trying to make a simple image gallery. This is what I have now:
Live demo: http://jsfiddle.net/rgvqA/
var NumberOfImages = 7;
var img = new Array(NumberOfImages);
img[0] = ...
3
votes
2answers
71 views
Jquery: how to create double .not() statement?
I have 3 layers of nested menus in <ul>s, eg:
<div id="menu">
<ul>
<li><a href="somewhere.html">enu Item</a>
<ul>
<li><a ...
2
votes
1answer
60 views
What this HTML code means?
I've viewed in some source code and found something like this:
<div class="classname {height: 300px; width: 200px}"></div>
I know that element styling is available by using the style="" ...
0
votes
1answer
106 views
Setting custom attrribute on svg element (Raphael)
When I set id to svg element
var circle = paper.circle(x, y, r);
circle.node.id = 'circle-id';
everything is fine and I can see expected result like this when browsing document with the debugger:
...
3
votes
2answers
89 views
How to get specific value of an element in jQuery
I developed a image gallery using a jquery plugin. Now i need to select an attribute value of a selected image. For this i used the following code..
var img=$('li.selected');
var comm = ...
0
votes
1answer
56 views
how to get attribute values
I am running following html code for each one minute using set timeout
<div data-id='1' class="userId">
<span> user name-1 </span>
</div>
<div data-id='2' ...
1
vote
2answers
81 views
How to take the attribute value from multiple elements not just the first match
How can I take all data-id from the following line of code
HTML:
<div data-id='1' class="userId">
<span> user name-1 </span>
</div>
<div data-id='2' class="userId">
...
0
votes
2answers
27 views
Applying an object that only contains changes to another object in javascript
I'm currently using a pseudo object structure in my javascript. For example:
MyObj = function(options) {
options = options || {};
this.valueA = options.valueA || 'A';
this.valueB = ...
1
vote
2answers
110 views
Does an input have an “original value” attribute?
With the latest changes to jQuery there are the different methods, .prop() .attr().
What I am wondering is if there is a way to get the original value of the input when the page was loaded?
I know I ...







