The prop() function was added in jQuery 1.6 library. It returns a property for the first element of the matched set.

learn more… | top users | synonyms

2
votes
2answers
47 views

When is it preferable to use `attr()` instead of `.prop()`?

(Note: While it may be tempting to say this is a duplicate of .prop() vs .attr(), I do not believe it is. That post does a fantastic job explaining the difference between .prop() and .attr() but does ...
1
vote
2answers
36 views

jQuery prop not working as part of if statement

I am having trouble enabling and disabling a button based on an if/else statement in jQuery. The problem here is that, when the text input is in focus, the button is immediately enabled. The code ...
0
votes
2answers
36 views

How do I use prop. to only be applied to the element clicked?

I am creating a payment form, part of which the user can select credit card or paypal. I am having issues with the display function. Should I be creating a new function for each element? This is what ...
-1
votes
3answers
77 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
1answer
59 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
70 views

Cannot access <a> element created after page load using jQuery

I have a site which has an element with a specific id. I would like to get the href attribute using jQuery. I am trying to do the following: alert($("#id").prop('href')); But it says 'undefined'. ...
0
votes
2answers
54 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 ...
0
votes
1answer
30 views

drop file in div and put it in file input

I have problem with dropped file in div I want to put it in file input I have this code document.getElementById('drop_div').addEventListener('drop', function(e){ e.preventDefault(); var ...
0
votes
2answers
16 views

Jquery Get longdesc Prop

I need to get the longdesc from an image. I have tried: $(this).prop('longdesc'); but it returns undefined.
1
vote
3answers
92 views

Getting prop('tagName') problems in jQuery

Having a bit of trouble with some strange setups I encountered while working on a bookmarklet for work purposes. I need it to be able to find all the video embeds on a page and process the information ...
0
votes
2answers
188 views

.prop, .attr not working when trying to disable asp:CheckBox

I have a bunch of asp:checkboxs. Most of them have a class of "restricted" and all of them have clientIdMode='static'. I have a separate checkbox with id='other'. When this box is clicked, I want the ...
1
vote
4answers
90 views

Jquery checkbox target id's only one

$(document).ready(function (){ $(function(){ $('input:checkbox').prop('checked', false) $('input:checkbox').click(function(){ if($(this).is(':checked')){ ...
0
votes
3answers
43 views

jquery exclude div from function

I have some jquery that unchecks all the checkboxes and then if one gets checked then it will uncheck all the others! I want to exclude a div on the page with some checkboxes from this! The div to be ...
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
vote
2answers
127 views

Jquery Checkbox that matches the id FILTER

<div class="posts"> <input id="chkbox_0" type="checkbox" value="chck_0" name="list" style="float:left;height:95px; width:15px;"> <div class="title box " onclick="thisimg(0,252250)"> ...
-1
votes
2answers
182 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 ...
0
votes
1answer
135 views

jquery loading photo into div then fadein

I'm trying to create a gallery, I'm trying to load an image into a div, and when it's finished loading have it fade it, though it isn't quite working. If I remove the display:none the image does load ...
0
votes
1answer
113 views

Using snippets to make Class properties in VB.net. prop only gives “property () as ” Whats up?

As the title says when I type prop I only get a very short version "property () as " and no get or set. It used to work in vb.net yet the snippet seems to have totally gone to be replaced by this ...
0
votes
1answer
99 views

Toggling a checkbox to append to div - checkbox stays unchecked

I'm building my first little jquery To Do List, each list item has a checkbox, and when this is checked it is moved to the Done div. This works as expected, it's just that the checkbox is always ...
0
votes
2answers
97 views

jQuery live and prop and change

I need to fire an event when the 'checked' state of any one of several checkboxes is changed, and to do this not by listening for the click. Why? It looks like this: BUILD YOUR SUNDAE! All ...
-3
votes
1answer
64 views

jquery prop worked but not now

i wrote a jquery function using prop to uncheck all checkboxes in my page. it was working fine, but today all of sudden, it is not working. below is my code $(function() { ...
0
votes
3answers
116 views

Storing multiple selectors in a single variable

I have a piece of code that handles clicks on images that represent buttons. If that image is clicked, its corresponding image will appear to the user. By selecting the multiple IDs of the images, the ...
1
vote
5answers
486 views

jQuery toggle checkbox when parent is clicked

I have written a simple js function to toggle the checkbox on/off then the parent (in this case a TD) is clicked. This function works as expected when you click anywhere on the TD. However when you ...
19
votes
3answers
1k views

jQuery attr vs prop?

Now this isn't just another What's the difference question, I have done some tests(http://jsfiddle.net/ZC3Lf/) modifying the prop and attr of <form action="/test/"></form>​ with the ...
2
votes
3answers
235 views

jQuery cannot get custom attributes on UL elements

I am currently focussing the following issue with jQuery 1.8.2. Custom attributes are working fine for e.g. input fields: <input id="test" required="true"> $("#test").prop("required") true ...
2
votes
1answer
287 views

Simple Crossbrowser textarea expander

My previously simple textarea expander is now causing problems. $(document).on('keyup', 'textarea',function(){ $(this).height($(this).prop('scrollHeight')); }); Works fine on Firefox ...
0
votes
2answers
166 views

condition for input field and checkbox

how can i create a condition for multiple checkbox! Input Field ID =" INsrvOtr " CheckBox ID = "INsrv" let's say that the that the user has two options,either put a value on the input field or ...
0
votes
5answers
382 views

Why the jquery prop() method can not get the the element's value property

I have several li element in page: <li value="a">a</li> <li value="b">b</li> <li value="c">c</li> <li value="d">d</li> the I want get the value ...
2
votes
1answer
658 views

Option Prop Changing Default Selected Value - Jquery

So I have a selection list, and if the default value hasn't been changed from --- then return to the form false. Pretty much for validation purposes so we know they picked a title. The problem is that ...
1
vote
2answers
435 views

JQuery disabling button

I build a quick pagination from scratch it kind of works, but for the past half hour I've been trying to get the next and/or previous button to disable at the last page like this: (this one is for the ...
0
votes
2answers
385 views

jquery : “force” the selected option to replace the placeholder “loading” in a select list

i would like to show a "loading" message in a list, while my list is loading titles from Flickr. I created a single <option> : <select name="select-choice-1" id="select-choice-1"> ...
0
votes
0answers
412 views

persist checkboxes checked state after page reload

I am grabbing all the checked checkboxes' values and passing to the URL and on button click, page reloads and pulls up all the results based on the passed querystring. What I couldn't do is maintain ...
7
votes
2answers
9k views

Getting the User Agent with JavaScript

I'd like to get a script that can grab the user's user agent and prop it to an attribute. I'm making a website problems contact form and I usually need to know what browser the user is using. How can ...
4
votes
3answers
4k views

jQuery .prop(“disabled”, false) not working in Chrome

having problems with .prop("disabled", false) it's works fine in opera and firefox but IE and chrome i can't get it to work.. Actualy it's a invination form and im make send button like this ...
0
votes
4answers
899 views

jQuery set disabled on textarea with no class

I have a textarea and I'm trying to set it to readonly. I pull the textarea from an API so there is no class. Here is the HTML: <div class="ss_datesel_inp_cont"> <div ...
9
votes
7answers
6k views

changing the img src with jquery

The html structure I have is something like: <ul id="something"> <li> <a href=""> <img src="http://domain.com/directory/file1-128x79.jpg"> </a> ...
2
votes
3answers
3k views

jQuery .prop() compatibility

I'm trying to test if the .prop() method exists on the current jQuery included (for compatibility reason) via: if(typeof $.prop === 'function') I would expect that the condition above is true for ...
1
vote
1answer
1k views

jquery attr behaviour in version 1.6

I have made a page here It was working fine with version 1.5 now with 1.6 i m getting this error in firebug elem.getAttribute is not a function [Break On This Error] ret = elem.getAttribute( ...
0
votes
1answer
1k views

jQuery 1.6 prop() on div's title [duplicate]

Possible Duplicates: jQuery 1.6 prop() on div's title .prop() vs .attr() What is the differnece between doing $('div').prop('title','whatever'); //set $('div').prop('title'); //get ...
493
votes
6answers
67k views

.prop() vs .attr()

Ok. So jQuery 1.6 has the new function prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: ...
0
votes
2answers
5k views

Spring <prop> tag

I have <bean id="dao" class="......"> <property name="foo"> <props> <prop key="me">Homer</prop> <props> ...