This tag should be used for attribute related issues.
1
vote
1answer
35 views
Using JavaScript to get data-attr and replace that attr with a var
Ok so what I am trying to do is use javascript to get the attribute that I select, and use that as the javascript variable. Better if I show you anyways.
var a='<div ...
0
votes
2answers
45 views
jQuery: if ID is equal to statement
I'm working on a code that does a action if one of the LI's is selected.
So if one of the first LI's is 'current' I want to perform an action on it, the code:
<div id="types">
<div ...
0
votes
5answers
65 views
How to get the style value using attr
My HTML CODE HERE
<i id="bgcolor" style="background-color: rgb(255, 146, 180)"></i>
I want to get the background-color value using jquery attr
What i tried is bellow
...
1
vote
3answers
46 views
Jquery Swap checked disabled attr on change
Suppose to check disable selected checkbox and reverse the check disable on the other box. Seems to work till I try it again on the previously changed checkbox. Brain is fried for today. Would be very ...
0
votes
1answer
43 views
IF-statement stroke in a line diagram using d3.js
I've drawn a graph using data out of a database, and I want that line to turn red when the number in the database gets higher than 500 (like below). Unfortunately it doesn't work this way, and I've ...
0
votes
2answers
23 views
jQuery modify image's parent a tag depending on image src
I have a page that loads an image at random. With jQuery, I'd like to check the image's src and, depending on what that src contains, modify the href of the image's parent a tag.
Here's what I've ...
1
vote
3answers
50 views
Add or Remove Attribute using jQuery toggle to Hide / Show an item
I have the following jQuery which I use to Hide/Show an iFrame when I click a button.
The iFrame contains some PHP, which I only want to load when the iFrame is displayed.
...
0
votes
3answers
24 views
Output classes as plain text and include dots
I'm trying to get classes from elements as text in span and inserting a dot in the class. I first tried replacing spaces with dots but that didn't work out. I really need to target the individual ...
0
votes
2answers
24 views
Location.hash equally option.value and set selected
I have url like this with id:
/montazh/#slide4
/montazh/#slide5
/montazh/#slide6
/montazh/#slide7
And i need get the location.hash, compare his with select option value, and if two values equal ...
2
votes
2answers
59 views
Get the attribute of a packaged function from within itself
Suppose we have this functions in a R package.
prova <- function() {
print(attr(prova, 'myattr'))
print(myattr(prova))
invisible(TRUE)
}
'myattr<-' <- function(x, value) {
attr(x, ...
-1
votes
2answers
27 views
Deleting value of each input Javascript
I have 3 inputs (autocomplete's of JqueryMobile).
Using this function:
$('.ui-input-clear').attr('onclick', 'delete_email();');
I add onclick event to each clear button, but what can I do for ONLY ...
2
votes
1answer
56 views
Can there be conditional statements on custom android attributes?
most of you will know that there is a possibility to give custom Attributes to custom Views in Android. This is explained quite brilliantly for example in this thread here on Stackoverflow. My ...
0
votes
1answer
28 views
How to get all attributes of dom element using dojo
Is there any way to get all attributes of dom element in DOJO (not specific one like domAttr.get("nodeId", "foo")).
<div style="border-width: 2px; border-color: #000000; border-radius: 0px; ...
-1
votes
3answers
75 views
difference between prop() and attr() in jQuery and when to use attr() and prop() [duplicate]
I saw in some places .attr() is used in jQuery.In some places .prop() is used.But i searched
in SO and google i am very confusing .Please tell me what is the exact difference between
these ...
0
votes
4answers
51 views
jQuery .attr doesn't attribute width or height
The following code attributes the src to .ajax-loader which is an img but not the height or width. Am I doing something wrong?
$(".ajax-loader").attr({
src: "http://test.com/loading.gif",
...
0
votes
1answer
58 views
jQuery Upgrade, .attr and .prop - 1.2.6 to 1.9.1
I'm trying to upgrade a large number of sites at work from very old versions of jQuery (1.2.6, 1.4.3) to the latest version (1.9.1). Things are going pretty well - the Migration script does most of ...
-1
votes
1answer
60 views
Can I use attr() inside background url() in CSS? [duplicate]
I would like to do this in HTML:
<a href="http://host.com/cat.png">text</a>
and in CSS:
a {
background-image: url(attr(href));
}
It doesn't seem to work for me. Is it even ...
1
vote
1answer
32 views
attr() not working but target will call other commands?
Okay so this guy should be calling the number form the rel attribute in the target tag, but it's returning as undefined:
$(this).closest('tr').prevAll('tr:has(td.country)').first().attr('rel')
...
0
votes
6answers
243 views
Checkbox / radio is checked=“checked” in HTML but it looks like unchecked
I'm trying to ensure that user can only select one checkbox, but it looks like nothing is checked. What am I doing wrong?
<div class="formField rsform-block rsform-block-typprofilu">
...
1
vote
3answers
43 views
How to get an attribute of a function without calling the function
Say I have a function like so
def spam():
spam.eggs = "Foobar"
#do stuff
return
I want to get the value of spam.eggs ("Foobar") in another function without having to actually call the ...
0
votes
1answer
31 views
PyQuery: extract id from html?
I try to get all the "id" from an html file with PyQuery, but is bringing troubles...I try this:
from pyquery import PyQuery
file = open('index.html', 'r').read
jQuery = PyQuery(html)
...
3
votes
8answers
81 views
jquery - Why do we write .attr('selected','selected') with select tag
why do we write .attr('selected','selected') with select tag
For ex:
$('#countryList option').filter(function () {
return ($(this).text() == findText); }).attr('selected','selected');
});
What ...
0
votes
0answers
41 views
without override current value how to add new value in attr tag
i want to know that without override in current value how to add new value in attr tag i know it's a typical question but am asking only value in numeric let me explain
i have a ul like this
<ul ...
0
votes
3answers
45 views
concatenating error in jquery
I have this problem with my jquery code. I need it to concatenate a jquery variable value to an an html attribute href. It however keeps returning [object%20Object] in the place of the actual variable ...
1
vote
4answers
75 views
Swap image src with jquery
I have one big image and small thumbs, i am trying to swap their src with each other. Here i am changing thumb img in bottleWrapper img, but i want to swap their src. Pls help!
HTML
<div ...
0
votes
2answers
97 views
Getting the attribute of the element that has the mouse over
I'm trying to make a legend system to my web site.. It's a simple task...
When the mouse is over the elements, jquery gets the value attribute and adds this value to a div below...
I don't know how ...
0
votes
2answers
82 views
Running a jQuery script in a Wordpress template
I'm trying to run the following script inside of the header.php file of a Wordpress site:
<script>
jQuery(function($) {
jQuery('[href=#membership]').attr( 'data-menu-top', '500' );
...
0
votes
1answer
66 views
jQuery swapping ids [closed]
I have swapping div's. When I click the #inactive id, the #active-page should disappear and the #inactive-page should appear. Moreover, the #active id should become the #inactive id and vice versa. I ...
0
votes
3answers
51 views
Append text to URL src via jquery
I'm scraping some content and there's this image which has this:
<div id="targetImage"><img src="alfresco/nap/webAssets/webPage/homepage/desktop/common/intl/global/images/primary-v=1.13.jpg" ...
3
votes
3answers
85 views
Getting the active route and applying it to a nav in a view
I've been trying to work out how to wire up my navigation and show which nav item is active. I have a view for it here:
<script type="text/x-handlebars" data-template-name="nav">
<ul ...
0
votes
1answer
89 views
jQuery Mobile dynamically load attr
First of all, it's my first question :) And i have to say, i have a bad english :) Sorry for this..
I have a problem to joomla with jquery mobile. a tags comes from joomla content. I can't insert ...
2
votes
1answer
140 views
JQuery to dynamically assigning id to dynamically generated div, inside contenteditable div
<div class="pad" id="test" contenteditable="true" spellcheck="false">
<div id="a0" class="lines" > text1</div>
</div>
I have a content editable div, and many child divs ...
0
votes
5answers
124 views
assigning a value to a variable with .attr
new to jquery and cannot seem to find an answer no matter how hard I Google.
I may be going at this completely the wrong way, but this is as close as I can figure from what I have found, however it ...
0
votes
1answer
21 views
Can't add ID to parent
<div class="search_content_container float_left" style="margin-top:3px;">
<input tabindex="2" id="simple_search_button" class="search_content_button spaceMar15L" type="button" ...
0
votes
1answer
43 views
Using .each(), I want to .append() a number value to the value .attr()ibute of an <input> in JQuery
I want to put numbers separated by a comma in the value attribute of an <input>. The problem is it erases it and puts a new number there instead of appending it to the end of the attribute. Can ...
1
vote
2answers
64 views
How to Get the Value in an HTML Tag's Attribute using jQuery
I know the following jquery syntax will set the attribute value for src
$(this).closest('img.button').attr('src', '/images/button.png');
But how can I get or grab the 'src' attribute's value for ...
2
votes
5answers
396 views
JS .checked vs jquery attr('checked'), what is the difference?
I can't figure this one out. According to W3 Schools, the checked property sets or returns the checked state of a checkbox.
So why does $('input').checked ? $('div').slideDown() : ...
0
votes
2answers
50 views
jquery retrieve ids of some elements and write them in an array
I need to do the following: check if the 3rd td of a tr contains (exactly) 56 and then retrieve the id of the checkbox contained in the first td of that row.
<table>
<tr class="bg">
...
12
votes
3answers
1k views
Why jQuery 1.9+ attr() method not deprecated?
Can I, a jQuery1.9+ software developer, "deprecate" the use of the attr() method in my day-by-day work?
As showed in many questions,
.prop() vs .attr() (main)
jQuery attr vs. prop, there are a ...
-1
votes
2answers
177 views
jQuery attr vs. prop, there are a list of props? [closed]
This is not a duplicate question, I need only to decide if the better/fast/correct is to use attr or to use prop. The simplest and reliable way is checking into a list. A "list of element-name where ...
1
vote
2answers
73 views
.attr() doesn't work for the lement created by javascript:appendChild
I have a set of thumbnails like :
<div id='thumb' class='anImage.jpeg'>
<img src='anImage.jpg' />
</div>
......
<div id='thumb' class='anotherImage.jpeg'>
<img ...
0
votes
1answer
40 views
jquery fadeOut behavng badly
While there have been many threads dealing with FadeIn/FadeOut, I believe I have a problem using these functions that is somewhat unique. I find it hard to believe that it may be bandwidth, but if it ...
0
votes
1answer
77 views
disable submit button according to validation of multiple inputs
I've checked every input with keyup or change events with different js files. So user can see his/her mistake by the time it is made. Now i want to collect all validation info of inputs and make click ...
0
votes
3answers
118 views
JQuery. Copy link attribute to a dynamic element within a div
I'm still learnig jQuery and I'm stuck trying to have each of the dynamically generated links the same URL as the previous static link within the Div. The code seems to apply the same URL (#1) to all ...
0
votes
1answer
323 views
jQuery multiselect selected based on text
Trying to get the following to work but can't really find what's wrong that prevents the selection to happen.
<select multiple="multiple" class="inputbox" name="keywords[]" id="keywords">
...
1
vote
3answers
85 views
getting element by attribute jquery
is there any way to get an element in the page by attribute
so lets say i have this HTML
<ul id="tabMenu">
<li class="active"><a href="#home-loans">Home Loan</a></li>
...
0
votes
1answer
88 views
jQuery - dynamically binding a CSS class on an attr?
I have a table rows with a unique, where each row has a unique ID. However, sometimes that table is dynamically generated through AJAX.
I also have a button that is meant to update a particular table ...
0
votes
0answers
70 views
jquery set input attr name with dot
Hello i'm trying to set input name which contains dot
<script>
$(function() {
$('#addOption').click(function(event) {
event.preventDefault();
var newOption = ...
0
votes
2answers
113 views
How to get second class from two available with jQuery
I need to get the second class from an element which has two different classes, so i try the split method but something is wrong, can u help me?
js_kp_main_list.find('li#kp_r_04').addClass('class_01 ...
1
vote
0answers
477 views
JQuery attr('src') iframe caching issue in IE10 only
IE10 is the only browser that does not refresh an iframe in a gallery.
The iframe is an embed code for an external service, so setting caching meta tags will not work. I tried setting the iframe ...





