Tagged Questions
The closest tag has no wiki summary.
6
votes
3answers
785 views
Fastest way to find the closest point to a given point in 3D, in Python
So lets say I have 10,000 points in A and 10,000 points in B and want to find out the closest point in A for every B point.
Currently, I simply loop through every point in B and A to find which one ...
5
votes
1answer
323 views
Closest pair of points problem
I know how to implement n log n closest pair of points algorithm (Shamos and Hoey) for 2D cases (x and y). However for a problem where latitude and longitude are given this approach cannot be used. ...
5
votes
2answers
149 views
jQuery - parent() not working within callback function
I was testing with parent() and closest(), none work within function.
TD stays the same, no change using this method:
$.get('form.php', function(data){
alert(data);
...
3
votes
5answers
138 views
perl regex match closest
I'm trying to match from the last item closet to a final word.
For instance, closest b to dog
"abcbdog"
Should be "bdog"
But instead I'm getting "bcbdog"
How can I only match from the last ...
3
votes
1answer
259 views
Solving a cubic to find nearest point on a curve to a point
Ok,
I have a projectile that has its position defined such that:
a.x = initialX + initialDX * time;
a.y = initialY + initialDY * time + 0.5 * gravtiy * time^2;
I want to be able to predict which ...
2
votes
1answer
58 views
Get text from span above link - Jquery
Hi I am trying to get the text from a span element directly above a link.
$(this).closest("span").text()
Full Code:
JS
$boxes.find('.portlet-header .portlet-maximize').click(function() {
// ...
2
votes
5answers
248 views
PHP - returning closest match from database
I'm returning mobile phone data based on the user agent. But in an instance where the useragent is not stored (newer version of phone or software) I want to be able to return the closest match, a bit ...
2
votes
5answers
191 views
jquery closest doesn't want to work
I have repeated down the page an image with a div next to it like this:
<img src="/img/productspage/questionMark.jpg" class="prodQuestionMark" />
<div ...
2
votes
1answer
506 views
jquery: closest('h3') selector?
i have:
<ul class="rating">
<h3>Like this</h3>
<li class="rating-number">
<div id="iLikeThis" class="iLikeThis">
<span ...
2
votes
2answers
540 views
MySQL: Replace a column's values with values in a new table that are closest
I have two tables like so:
Table1 (ID, Kilometers, Depth)
Table2 (ID, Kilometers, Depth)
Sample Data:
Table 1
1, 0.001, 10
2, 0.002, 11
3, 0.003, 11
Table 2
1, 0.001, 10
2, 0.003, 12
3, 0.004, 15
...
2
votes
4answers
993 views
Using a class name in jQuery's .closest()
I'm attempting to do some calculations for a "running total", this is my code:
$('.quantity_input').live('change',function(){
var ValOne = parseFloat($(this).val());
...
2
votes
3answers
907 views
How to get value of nearest input Jquery
I have multiple buttons on my page with the same class. When I click on a button I want to get the value of the nearest input box (remember there are multiple input boxes and buttons on my page with ...
2
votes
4answers
807 views
jQuery closest TR selection
Hope someone can advise. Having issues trying to remove a row once a link has been clicked.
HTML
<table>
<tr><td>Some Data</td><td><a href="#" ...
2
votes
1answer
1k views
traversing td/tr with jquery's closest()
<td width="162"><span class="required">*</span> Name:</td>
<td width="407">
<label>
<input id="store_name" class="text_field alnum" type="text" ...
1
vote
4answers
49 views
.addClass based on a span wrapped in two tables
I'm trying to add a class to a table.
<table> > <tbody> > <tr> > <td> > <table> > <tbody> > <tr> > <td> > <span class="subcategory">
So ...
1
vote
4answers
75 views
Refine jQuery selector to target correct input element
I have a function that writes a value from a select to an input. I am using a live("change", function to trigger this.
if ($(this).val( ) == 'MyValue') {$(".my_input").val(VarValue);}
This works ...
1
vote
3answers
76 views
Jquery div selector for a particular row
I have the following li as rows.. My requirement is when i click on delete anchor, popup div should appear.
<li class="select">
<div class="data_options"><a href="#" ...
1
vote
3answers
74 views
Nokogiri equivalent of jQuery closest() method for finding first matching ancestor in tree
jQuery has a lovely if somewhat misnamed method called closest() that walks up the DOM tree looking for a matching element. For example, if I've got this HTML:
<table src="foo">
<tr>
...
1
vote
1answer
149 views
jQuery find nearest
I needed to find the nearest element, relative to another element.
I wanted a generic function not locked to a spesific tree structure.
Maybe it already exists within jQuery and if so please show me!
...
1
vote
4answers
114 views
How would I go about finding the closest date to a specified date? (Java)
I was hoping to know how I would type up a method to give me the closest date to a specified date. What I mean is something along the following:
public Date getNearestDate(List<Date> dates, ...
1
vote
1answer
63 views
.closest() in Capybara
I'd like to find closest parent of an html element in cucumber.
just like the .closest() function of jQuery does.
this is my (pseudo) code:
aspect = find('.dropdown li:contains('+selector+')')
...
1
vote
2answers
83 views
JQuery get first matching ancestor containing a specific class
I am trying to iterate to the first ancestor containing the class ‘sys-form-row’.
I am able to get the row containing class="sys-form-row" using the following: objBack = ...
1
vote
2answers
108 views
jQuery closest() question
To all: sorry if I've not understood the protocol here at StackOverflow. I will immediately endeavor to correct my standing within the community. Having said that:
I'm trying to change the context of ...
1
vote
1answer
214 views
jquery closest tr not getting selected
using jquery 1.6.1
When the check box gets checked or unchecked, i want to change the background color of the row. My closest tr is not getting selected here. I have a working code that i am changing ...
1
vote
1answer
87 views
Vector to closest isosurface point on metaballs
I'm currently making a prototype game where the player walks along the isosurface of a collection of moving metaballs. I've already implemented walking along a sphere with a forward and up vector. To ...
1
vote
2answers
457 views
Using numpy.argmax() on multidimensional arrays
I have a 4 dimensional array, i.e., data.shape = (20,30,33,288). I am finding the index of the closest array to n using
index = abs(data - n).argmin(axis = 1), so
index.shape = (20,33,288) with the ...
1
vote
1answer
76 views
help on 2-D closest problem
I know I am doing this wrong, but cannot think of the right way to solve this problem.
I am working with 12 points listed below.
...
1
vote
2answers
607 views
jquery .find or .closest then addclass not working in IE or Chrome
Works in FireFox. Does not work in IE8 or Chrome:
<script>
$('.PageText_L657n').closest('td').find('.pricecolor').addClass('ice1');
</script>
Should be a line-through "Regular Price:$ ...
1
vote
3answers
269 views
php Closest minor number in array
I have an array, for example (it can be anything, but it's already ordered):
array(1,7, 12, 18, 25);
I need to find what number is the closest to that array.
Taking the above array:
$needle = 11;
...
1
vote
1answer
109 views
jquery appendTo closest div (by class)?
I'm trying to do some jquery which will find images inside text, wrap the image inside a div and then move it to another div, yet I can't seem to get it working. Here's the code that I have so far:
...
1
vote
2answers
958 views
Jquery Closest From Element Value
Im trying to get a form element value using closest. Here some example code.
<table>
<tr>
<td>Hour <input type="input" value="12" name="data[hour]" class="hour" ...
1
vote
2answers
350 views
Mysql Algorithm for Determining Closest Colour Match
I'm attempting to create a true mosaic application. At the moment I have one mosaic image, ie the one the mosaic is based on and about 4000 images from my iPhoto library that act as the image library. ...
1
vote
2answers
76 views
Dynamic closest elements
I have a 2D surface ( Grid ) with 50 elements at different locations.
I need to decide which are the 10 closest elements to a given point.
In addition, the given point is constantly moving and i need ...
1
vote
2answers
832 views
JQuery how to access divs <p> tag and append it
Hello I'm trying something .. I was reading Jquery traversing documentations some forums, this websites previously asked questions relating this topic .. none actually answers my question so I'll ask ...
1
vote
2answers
484 views
jQuery $.closest() (Or whichever comes first)
While working a project tonight, I ended up using one .js resource file for two different pages. One page contains a textarea within a div, and another contains a textarea within a td. Wanting to work ...
0
votes
1answer
57 views
jQuery a solution between children() and find(): anything than looks like closest()?
Based on the different answers received, the only solution using jQuery without implementing our own selector function is a basic selector with ":first" or followed by ".eq(0)" for jQuery.
I wanted ...
0
votes
4answers
36 views
Jquery Closest and Parents Not Working with Input and Nested Divs
I have hidden Divs with ".display-link" classes that are two levels up from an input box. When an input (checkbox) is clicked, it should display the hidden link in the parent's previous sibling's ...
0
votes
1answer
33 views
closest input inside div parent
I'm am attempting to get the value of one input in a table row IF one of the other cells in the row has a value. The goal here is, if the user entered money received into the row, then a received date ...
0
votes
2answers
48 views
jquery match element based on id
I'm a noob to jquery. Stuck and would appreciate some help.
Currently building a tool to grab data from a particular page. The page looks like this:
<table width="100%" border="0" align="center" ...
0
votes
3answers
37 views
jQuery Closest() isn't working
Could someone please explain me why replacing the following
$('.post_title a').hover(function () {
$(this).parent().parent().parent().parent().find(".post_footer").toggleClass('footer_border')
...
0
votes
1answer
15 views
Using .closet() to insert before - not working
I have the following markup in a list (of repeated identical list format):
<li class="item">
<div class="outer">
<p>Some text</p>
<div ...
0
votes
2answers
57 views
How do I find values close to a given value?
I have data = [1 1.2 1.3 1.5 1.8]
I want to find closest values before and after from data for this point, b = 1.23
How do I do this?
0
votes
1answer
80 views
.closest('form').find(':checkbox') explain logic
I have two forms, form 1 and form 2; both forms are located in same document or page. These forms are differentiated by a checkbox; form 1 has a checkbox input element, and form 2 has not checkbox ...
0
votes
0answers
41 views
Jquery ui, getting closest href around an image tag
I've created a Jquery UI gallery in which a user should be able to click on an image thumbnail or an icon and open a larger image.
<a ...
0
votes
2answers
80 views
jquery - Change IMG src on rollover
I've the following code: (a fiddle is here)
<img class="changeable" src="http://placehold.it/100x120&text=anniversary">
<ul class="rollover_list">
<li><a href="#" ...
0
votes
3answers
32 views
Weird behavior with .parents() and .closest() when trying to return parent <ul> element id in jQuery
So I've got 2 <ul> containers each with id's. Inside of them are a list of <li> elements.
The first <ul> is <ul id="coaches-list">. The second is <ul id="players-list">.
...
0
votes
2answers
38 views
jQuery Get the Next Set of Classes?
I have the following HTML like
<body>
<div class="myCool">blah</div>
<div class="cool">some text</div>
<div class="cool">some text</div>
<div ...
0
votes
2answers
53 views
closest & prevAll not working for me, trying to set src of image of specific class on click of anchor
I have a single page site that utilizes tabs - It previously had one gallery. I am now adding 3 and trying to limit the duplicate jquery I write. It worked fine when I specifically had a selector ...
0
votes
2answers
43 views
Getting the closest item with specified ID after tr
I'm using this:
$(this).closest('tr').next()
To select a table row, but I also need to select a tr with specified id after this tr.
I've tried like to do it this way:
var a = ...
0
votes
1answer
82 views
Need suggestion to find the closest block in opencv using kinect
I'm totally new to opencv, and I was recently assigned an assignment to find the center of the closest blob detected by kinect, which means that if you reach out your hands in front of kinect, then ...