Tag Info

New answers tagged

2

Here is an alternative solution using KnockoutJS instead of jQuery for doing this sort of thing (Binding actions to elements). Instead of storing the data in the DOM we'll be storing it in JavaScript objects. I know this is not exactly what you were looking for, but I think it provides a cleaner solution to the underlying problem. HTML: <table> ...


0

I know it may not be what you're looking for but would you consider adding something like contains-data-action=true for every anchor you send with a 'data-action:' attribute? And just query on that?


1

I had the same question today and was able to find a solution thanks to Scott Kosman here. Basically the answer is to make select IDs individually and then used .find(...) for anything below. So taking your example: $("#property [data-role='content'] .container"); Changing it to this makes PhpStorm happy and can evidently be more than twice as fast: ...


0

Use a cascading approach. Have a child-parent relationship through data-* attributes. On each div, have its previous divs id in the attribute. data-parentid="2". Then you can just keep chaining your functionality until you get to a div with no parentid. You can change your layout anyway you choose and this relationship will be intact.


1

Try this:- $('#' + $(this).val()).prevAll('.weekmenu').andSelf().show(); is the key. .prevAll() will get you all the preceding siblings matching the selector .weekmenu and then include itself too using andSelf() to the collection. $(document).ready(function () { $('.weekmenu').hide(); $('#week1').show(); $('#number_of_weeks').change(function ...


0

Try something like this, I didn't test it but I think it works:) $(document).ready(function () { $('.weekmenu').hide(); $('#week1').show(); $('#number_of_weeks').change(function () { $('.weekmenu').hide(); var weekNumbers = $(this).val(); for(var i = 1; i<= weekNumbers; i++) { $('#week' + i).show(); ...


1

Just change the last line of jQuery to: $('#' + $(this).val()).prevUntil('select').addBack().show(); jsFiddle example Full code: $(document).ready(function () { $('.weekmenu').hide(); $('#week1').show(); $('#number_of_weeks').change(function () { $('.weekmenu').hide(); $('#' + ...


0

I got something working but its kind of a mess and curious if others have a better way. http://cdpn.io/EsIef


3

The answer really depends on what the responseText looks like that is being returned from the GET request. Based on that you would have to wrap it or not. With Parent If the response is nested inside of a parent tag. Response Mark Up: <div> <div id="someId1"></div> <div id="yourId" class="block"></div> <div ...


0

try: $.get("blocks.html", function(data) { $(data).find('.block').each(... });


5

$.get("blocks.html", function(data) { var ids = $('<div/>').html(data).find('div.block').map(function() { return this.id; }).get(); });


8

Try this: $.get("blocks.html", function(data) { $(data).find('.block').each(function(){...}); }); If your 'data html' containing element is a '.block', look at @undefined's answer


0

SCRIPT <script language="JavaScript"> jQuery(document).ready(function($) { $("#MY_BUTTON").click(function(event) { $("div#PARENT_DIV").find("#CHILD_DIV").hide(); }); }); </script> HTML CODE <div id="PARENT_DIV"> <h1 class="Heading">MY HTML PAGE TEST</h1> <br /> ...


4

You can use $(this) or this to refer to source of event. $('a').click(function(){ alert($(this).text()); alert(this.innerText); }); It is better to use a class to be specific, so that the event is bind with intended elements instead of any a on the page. You can assign a class to elements on which you want to bind click event and use class selector to ...


1

Binding on anchor tag $('ul li a').on('click',function(){ alert($(this).text()); //This will give the text alert(this.id); //This will give you the id if you have id for anch tag. }); Binding on li $('ul li').on('click',function(){ alert($(this).text()); //This will give the text of anchor ta in your case alert($(this).index()); //This ...


3

You can get the clicked element using this. For example: $('a').click(function(){ alert($(this).text()); //displays the clicked element's text. });


0

It looks like this is a datatables issue specific to my case. So I'll have to dig a bit deeper to solve the problem.The regular selector methods seem to be working with non-auto generated checkboxes on my page. I'll update here once I track down the bug. Thanks everyone!


1

The selector is not correct: Try using: $('form#advanced_search input[type=checkbox]').each(function() { this.checked = false; });


2

You're not using the correct selector to get the checkboxes that you want. Try this: $("#advanced_search input[type='checkbox']").prop("checked", false); Fiddle: http://jsfiddle.net/R3Rx2/


0

Yes, use: $('#menu li ul').parent(); http://jsfiddle.net/Vshzh/


3

You can use: $('#menu li').has('ul') jsFiddle example


4

Try this - $("#menu li:has('ul')") http://api.jquery.com/has-selector/ Working Demo --> http://jsfiddle.net/V6Eqm/


0

Several of the answers ignore the OP's desired format. This will give you what you want. $('li').map(function(){ var $clone = $(this).clone(); $clone.children('*').remove(); return $.trim($clone.text()); }).get() Fiddle: http://jsfiddle.net/pE9PR/


1

You could do something like var children = $(listholder).children(); var array = []; var i = 0; $.each(children, function(key, value){ array.push($(this).text()); });


2

var array = $('li').map(function(){ return $(this).text(); }).get(); http://api.jquery.com/map/ Demo Fiddle --> http://jsfiddle.net/EC4yq/


0

You can loop through the li like this var innerNodeText = []; $("ul li").each(function() { var text = $(this).text(); innerNodeText.push(text); });


2

You just want to get the text from all the li's? var resultArray = []; $('li').each(function(){ resultArray.push($(this).text()); });


0

Instead of using index for dataValues use index for categories, this way: http://jsfiddle.net/RbenU/39/ tooltip: { formatter: function () { var serieI = this.series.index; var index = categories.indexOf(this.x); var comment = $("input:eq(" + (index) + ")").val(); return '-->'+comment; } ...


0

Try selecting all the elements and then filtering $('*').not('#color_picker,#selected_color_box,#color_picker_choose,#choose_color_box').click(function(event){ event.preventDefault(); $('#color_picker').css('visibility','hidden'); })


2

.not() just filters the current selection to elements that don't match the selector. document doesn't match the selector, so no change is made to the collection. You should instead use event delegation with a selector that matches all elements that are not your target elements. ...


0

Did you try: $(document).find("*").not('#color_picker,#selected_color_box,#color_picker_choose,#choose_color_box')


0

Try this :) $('div:not(#dontselect *)')


0

Keep the object into a js variable. Then when you open modal, add it using html(nameOfObjectVar) and when someone close the modal, you remove() it. That's what I did in a website that had a video in a modal. Better than trying to use YT stopVideo() which who knows when Google might change that.


2

Try some thing like var classes = ['grey', 'blue', 'blue', 'green', 'red']; var els = $('<div />').text(4).appendTo('#x'); $(els).addClass(function(index, cl){ return classes[ $(this).index() % classes.length ] }) Demo: Fiddle


1

The second line of your code appears to be missing the server tags. $('#this.lnkview') Should become $('#<%=this.lnkview.ClientID %>') EDIT Looking at your markup, I don't think you'll be able to do a lnkView.ClientID on it outside of the grid row. Suggest you use put a class on your linkbutton and use it as a selector instead. MORE EDIT ...


0

Are you sure that you have element with id 'lnkview' in your aspx code? You are calling this here '#<%=this.lnkview.ClientID %>'


1

You just missed one space as below if (serieI == 0) { comment = $("#ppForm textarea:eq(" + (index) + ")").val(); } else { //comment = "second serie matched!"; comment = $("#ppForm textarea:eq(" + (index1) + ")").val(); } Check working sample ...


0

Your code that is coloring table cells yellow is looping over all table bodies on the document and the row selectors in that loop aren't scoped to any particular table, so really you're iterating over every table row in the document once for every table that is on the page. If I'm understanding you correctly and you want to get the table with the class ...


0

I think the problem was in the way you included js libraries, you had several jqueryui libaries, and had error in console Object [object Object] has no method 'highcharts' Does this one work properly for you ?


2

You're over-complicating what you're trying to do, the majority of jQuery methods that allow multiple elements' properties to be changed also allow an anonymous function which iterates over each of those elements, for example to change the text of multiple elements: var colors = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']; // selects ...


0

You can change input to :input: comment = $(":input:eq(" + (index) + ")").val(); comment = $(":input:eq(" + (index1) + ")").val(); Demo Fiddle


3

Check sample on fiddle http://jsfiddle.net/RbenU/10/ Use textarea for selector instead of input as below if (serieI == 0) { comment = $("textarea:eq(" + (index) + ")").val(); } else { //comment = "second serie matched!"; comment = $("textarea:eq(" + (index1) + ")").val(); }


2

for (var i = 0; i < $('#parent').children().length; i++) $('#parent').find(":eq("+i+")"); } Fiddle


5

You can use $.each() simple example (jsFiddle): HTML: <table> <tr id="test"> <td>a</td> <td>b</td> <td>c</td> <td>d</td> <td>e</td> </tr> <table> jQuery: $.each($("#test").children(), function(index, data){ ...


0

jQuery go throw the DOM Tree and found the first ul-Tag in this Tag the first-child is the li and it will get the CSS you made. So it means the very first of all of them. With the ul > li:first-child jQuery takes every li that is the first child of every ul not only the first.


2

:first selector returns the first matched item among the all selected So $('ul').children('li:first').addClass('emphasis'); selects all children of ul which are li and then takes the very first of them. Whereas $('ul > li:first-child').addClass('emphasis'); takes all the li that are direct children of ul and takes every first child of the ...


1

You can use an array and filter method. var selector = ['one', 'one', 'three', 'five'], i = 0; $('h1').filter(function() { var match = $(this).hasClass(selector[i]); if (match) i++; i = i % selector.length; return match; }).css('color', 'red'); http://jsfiddle.net/u7BUd/


0

What about something like this: $(content_id + ' ~ .active:first').html($(content_id).html()).show(500);


0

Check this jsfiddle http://jsfiddle.net/wdcn6/14/ $(function () { $('.accordionContent').hide(); $(".accordionButton").click(function () { var content_id = $(this).attr('href'); $(this).nextAll('.active').first().html($(content_id).html()).show(500); return false; }); });


3

$('.active:first') by itself will always match the very first .active in the document. To start the :first match only after the link that was clicked, you can either use $(this).find() with a sibling combinator: $(this).find('~ .active:first').html($(content_id).html()).show(500); jsFiddle preview Or use $(this).nextAll(): ...



Top 50 recent answers are included