Tagged Questions
The inarray tag has no wiki summary.
5
votes
4answers
2k views
Should I use jQuery.inArray()?
I'm doing very frequent searches in arrays of objects and have been using jQuery.inArray(). However, I'm having speed and memory issues and one of the most called methods according to my profiler is ...
4
votes
3answers
60 views
Crossbrowser “inArray” function (without jQuery)
I wasn't aware of the bad crossbrowser compatibility of array.indexOf() . But now that I am, I need to find a way to achieve the same thing but without using the previous method.
I tried googling for ...
3
votes
1answer
52 views
JQuery inArray to display the order images are selected
Let me try my best to explain what I am doing here. Then ask how to solve my last piece to this puzzle.
I have a list of images that when clicked, on the image takes the ID from the parent element ...
3
votes
3answers
773 views
How to choose a set of unique random numbers (no duplicates) using the jQuery.inArray method?
This is a Javascript / jQuery question:
I'm trying to generate six unique random numbers between 1 and 21 (no duplicates), using the jQuery.inArray method. Those six numbers will then be used to ...
3
votes
1answer
655 views
checking for an array in an multidimensional array (pref-jQuery)
I've got a multi-dimensional array, and I'm trying to check if it holds another array.
I'm using jQuery.inArray function at the moment (I was trying Array.prototype but kept getting errors, never ...
3
votes
3answers
425 views
faster than in_array?
I need to compare a value to a set of array. However, I need to compare multiple values in foreach. If using in_array, it can be slow, real slow. Is there any faster alternative? My current code is
...
3
votes
4answers
672 views
1
vote
4answers
50 views
jquery index of an element in an selector array
I'm trying to get the index of an element within an array returned by a jquery selector.
Here's my code:
$("div").click( function(){
alert( $.inArray( $(this), $("#div") ) );
});
An an example, ...
1
vote
1answer
31 views
jQuery inArray spurious results
I have this code:
var myRSS =[];
function rssReader() {
$.getJSON('bbc.php', function(data){
console.log(data);
$.each(data[0].channel.item, function(index, item){
...
1
vote
2answers
123 views
jQuery inArray() locating HTML element
Say,I have 5 paragraphs in the page.
if I execute:
p_array=$('p');
second_p=$('p:eq(1)');
$.inArray(second_p,p_array);
I get -1.
Any explanation?
1
vote
2answers
338 views
Alternative to jquery .inarray?
I love how inarray, searchs an array without looping, but it only does exact/precise matches, where if i used the .match, i can do partial matches, but that requires a loop.
Is there any way to ...
1
vote
2answers
224 views
jQuery: How can I check if a function exists in an array?
I have the following code and need to check if a value exists as an array key.
I can't seem to generate the index of the key even though it does exist, any help would be great.
Code:
var run = { // ...
1
vote
3answers
207 views
How to check if string is .inarray
How can I check if a string is contained with my array? Here's how I'm putting the array together...
// get the select
var $dd = $('#product-variants');
if ($dd.length > 0) { // make sure we ...
1
vote
2answers
363 views
using jquery.InArray() if i have a collection of objects
in my javascript, i have an Array of Calendar objects.
Each Calendar objects has an array of CalendarEvent objects
Each CalendarEvent object has a property Date, Name.
i want to check, give a date, ...
1
vote
3answers
91 views
Need help with inArray
Hi I have the following function, I need to make it return false only if one of two other checkboxes are checked.
$.validator.addMethod(
"ReutersNA",
function(value, element) {
var ...
0
votes
1answer
42 views
jQuery if only 1 item inArray
Ok, so I have this jquery function to that grabs the checkbox's value and uses as identifier to show or hide an ul
The problem is that I couldn't manage to add an if only 1 choice in checkbox add X.
...
0
votes
2answers
86 views
How to check if jQuery object exist in array?
Given an item and an array, I would like to know if item exist in array.
item is a jQuery object, e.g. $(".c"). You can assume that item.length == 1.
array is an array of jQuery objects, e.g. ...
0
votes
2answers
20 views
jQuery inArray issue with combination with a each()
I am building a plugin which has a option where a user can set which element should right (default is left), the idea is for an menu, which has the option that a user can say, the first sub menu and ...
0
votes
3answers
100 views
MySQL Select list In Array
Each Article can have unlimited categories.
Categories are saved in the database like this
example article_category: '1','3','8'
OR
example article_category: '2','3'
So when I search for a ...
0
votes
4answers
41 views
Searching for element in an array — *Not* original object specific
http://jsfiddle.net/jENDR/3/
Something like this
var test = {a: 'a', b: 'b'}; var test2 = {a: 'a', b: 'b'};
var a = [];
a.push(test);
alert($.inArray(test2, a));
Test2 = -1
Test = 0
...
0
votes
3answers
99 views
jQuery $.inArray returns -1 when it should be 0
Hell All,
I have an odd problem:
//dataText hold current language data that's gathered from another function
//pick one to test it out
//if english data gathered
var dataText = ["Data uploads"];
...
0
votes
2answers
148 views
conditional in_array trouble with PHP mySQL
I have firePHP so i know exactly what the variables are, but I can't figure out why this code doesn't change it.
I receive from a mySQL call $query (which if returned produces [{"type":"2"}])
I have ...
0
votes
1answer
73 views
Array items not showing up in jQuery inArray
I have an array: 5, 10, 15, 20. When I press a button another number is added to the array, making it: 5, 10, 15, 20, 25, 30, 35 (etc.).
Now. I have a function which checks if a number is in that ...
0
votes
1answer
247 views
Excluding dates in the jQuery datepicker using beforeShowDay and an array of objects
I have an array of objects, what is the best way to determine if a date is in the array so it cannot be selected in the jQuery date picker. If needed, I can store DateValue as a date.
var EventDates ...
0
votes
4answers
495 views
Using jQuery's inArray method with a JavaScript associative array (or object)
It's possible that I'm not properly using jQuery's inArray() function, but I have to construct an object that only has the indexes of two other JavaScript objects where the values match exactly:
var ...
0
votes
2answers
306 views
Get id with serializeArray and inArray
I have the form
<form action="test.php" id="loginform" name="loginform" method="post">
<input name="title[]" id="title1" type="text" value="" />
<input ...
0
votes
3answers
142 views
inArray values issue
var checkboxarray = $.makeArray(data.checkboxes);
$('input[type=checkbox]').each(function () {
var chckval = $(this).val();
var verifyvalue = $.inArray(chckval, checkboxarray);
...
0
votes
1answer
267 views
jQuery .inArray() always true?
I'm trying to use inarray but its always returning true? Any ideas? (all li's are showing)
$("#select-by-color-list li").hide();
// get the select
var $dd = $('#product-variants-option-0');
if ...
0
votes
3answers
112 views
php in array question
I have this code here:
if (in_array('mystring', $entry->getCategories()->getValues()))
{
... //do somethingA
This works.
However, I want to allow somethingA to run, if "mystring" OR ...
0
votes
2answers
857 views
JS & jQuery: inArray() and indexOf() are not working properly if indexes are strings?
I have an array like this:
var arr = [];
arr['A string'] = '123';
arr['Another string'] = '456';
and Im trying to find an index of '123' or '456'.
Both:
var string = $.inArray('123', arr)
and
...
0
votes
2answers
149 views
Need help regarding jQuery $.inArray()
Could anybody tell me what is wrong with this code ??
jQuery(document).ready(function(){
var val = ["Hourly", "Daily", "Weekly", "Monthly", "Yearly"];
var myArr = ["Weekly", "something"];
...
0
votes
0answers
250 views
jQuery.inArray() - eclipse tells me this function is not defined
I have used the jQuery inArray function, but Eclipse tells me that this function is undefined. I don't understand how this can be so if it comes from the jQuery API.
preId is an integer, and ...
0
votes
1answer
555 views
Jquery Return Index Number For Each Item In Array and set that index at Rel Attribute Infinite Carousel
I am trying manipulate Jquery Infinite Carousel into dynamically resizing the image container based on the currently displayed image. I need to get the index of the Li element that contains the ...
0
votes
1answer
85 views
I am getting error in in-array function used in Multiple Select box
I have used Multiple select Box in edit form, displaying previously selected items in it using "in-array($needle,$haystack)" php function, but if the variable array "$haystack" in which multiple value ...