JQuery :: Use Strings In An Array As Selectors?
Sep 9, 2011
The follow jQuery code doesn't work. Does that mean jQuery doesn't support such a usage?
Code JavaScript:
var selectors = ['#header', '#content', '#footer'];
$(selectors.join(',')).addClass("new");
View 3 Replies
ADVERTISEMENT
Sep 17, 2010
What is the correct syntax for an nested array where each array element has 3 elements, a number and two text strings?
Code:
array = ['1, Old Man, Old Man','2 Black Sheep, Black Sheep',....]
should the text strings be in double quotes("")?
Code:
array = ['1, "Old Man", "Old Man"','2 "Black Sheep", "Black Sheep"',....]
View 3 Replies
View Related
Oct 12, 2010
Demonstration code:
The 'array' variable contains strings representing the id's of different elements. If the for loop above were to finish iterating, would all the links in all three elements call the click function (that displays an alert message), or would only the last element ("element3") have the click function? For me, the latter seems to be the case unless if I'm doing something wrong, but I would like clarifications and, if possible, alternative solutions as to how I can achieve the former result.
View 1 Replies
View Related
Feb 26, 2011
I'm post submitting a tabular form, the rows are like so
Code:
<tr>
<td><input type='checkbox' name='checkbox[]' value='x-y-z'></td>
[code]....
View 1 Replies
View Related
Jun 23, 2011
I use the below file function to sort the html table
[Code]...
View 1 Replies
View Related
Nov 4, 2009
I was working on this problem that asks me to return an array of scores for each string (only for its content part, not URL) in the global variable, which is an array. For example, alert a score of 0 if the string z is not found, 1 if found once, and 2 for twice. My problem is that I can get the code to alert if it has found the word (ex. "the"), but I cannot manage to :
a) Assign separate scores for each string.
b) Make the search case insensitive i.e. "the" will appear in 0,1, but not in 2, where it is capitalized
[CODE]
var c = ["[www.facebook.com] Facebook is the best social networking site to coccent with your friends. ", "[www.google.co.uk] Google is the worldwide search engine. ", "[www.bbc.co.uk] The best news source for starting your day. "];
function findScore(z) {
[Code]...
View 8 Replies
View Related
Dec 17, 2009
in PHP I can create a multi-dimensional array with strings for keys,eg
$arr['key'] = array("item 1","item 2");
This works if the string is a variable as well, like
$key = "MyKey";
$arr[$key] = array("item 1","item 2");
I'm trying to something similar in javascript, but with no luck
[Code]...
View 7 Replies
View Related
Mar 29, 2011
convert the inputs to numbers instead of strings?I'm trying to make a calculator of sorts
var array = new Array();
function insert(val)
{[code].....
View 1 Replies
View Related
Sep 25, 2007
I've been learning javascript for about a week and I'm really struggling right now. This is a homework assignment to help in learning loops and arrays.
What I want to happen is when a form button is hit it will replace the array from the one previous instead of just adding to it. Hopefully that makes sense. What do I need to do? here's my code....
View 1 Replies
View Related
May 21, 2010
How can i select immediate children of an element only. Like i have
<div class="widget">
<ul>
<li><a href="google.com">Google</a>
[code]....
View 1 Replies
View Related
Oct 12, 2009
Writing a sortable list function. My <li> elements contain several items (headings, paragraphs etc) and I want to add a class to the headings when they've been sorted. I have this code in my sortable init:
receive: function(event, ui) {
$(ui.item).addClass('editable');
},
This adds class="editable" to my newly-sorted <li> element - cool. What I want, though, is to add this class to the <h3> within my <li>. I tried:
receive: function(event, ui) {
$(ui.item + ' h3').addClass('editable');
},
but this just gave a syntax error.
View 3 Replies
View Related
Apr 23, 2009
I found that certain selectors work in all browsers except IE 8 and they need to modified. This selector pattern seem to work well in all browsers, including IE 8: jQuery("input[class='class_name'][type='text']") But this identical selector works in Firefox, Safari but not in IE 8: jQuery("input.class_name:text") In IE 8 it returns a "property not found" javascript runtime error. I don't know whether that the actual issue or if it is a side effect of some memory leak.
View 1 Replies
View Related
Apr 29, 2011
I'm trying to test if certain radio buttons are selected, but the name varies. My boss is considering changing the names to further isolate them breaking the script as it works now. I'm trying to figure out how to test the new case just like it works now. Here's a link to my pastebin
View 6 Replies
View Related
Nov 28, 2011
I am trying to assign a click event handler to any of the <a> elements in the code below:
<div data-role="content" id="picSpace" class="ui-content" role="main">
<div class="ui-grid-b" id="gamePics">
<div class="ui-block-a">
[code]....
View 5 Replies
View Related
Apr 4, 2009
Can I do this:
function showDiv(curEl){
hideDiv();
$(curEl).css("visibility","visible");
}
View 6 Replies
View Related
Apr 9, 2011
While trying to get a selector to work with ids that include square brackets, I searched the forum and found that I needed to escape the brackets with '\'. However, while this works with my fiddle: can't get the exact same selector to work within my page in either FF or Safari. I've triple-checked the id and it is correct; I know that jQuery is working on the page because changing the selector to$('.nameinput') gives the expected results. can't change the id because I'm working within an existing application; I know I could add a class to the input and use that as the selector instead. I'd prefer not to and would just like to figure out why this isn't working.
View 1 Replies
View Related
Feb 22, 2010
I have a page that has several embedded usercontrols with a popup reorderlist. Like
[Code]...
isthis the correct approach and if so what should the 'fld1' line look like to pull this data.
View 1 Replies
View Related
Jul 27, 2010
Is there a way to combine selectors with && condition. eg: $('.classname div[att=value]') Requirement is to select all div elements with class 'classname' and (&&)an attribute 'att' whose value is 'value'
View 2 Replies
View Related
Dec 30, 2010
What I'm trying to do is quite simple but as a beginner I'm getting incredibly frustrated with it. Here's my first attempt. I plan to do something a bit more fancy with the images, but I could see straight away that this wasn't the solution. Mouseover was changing the image before it had faded out and looked horrible. So, I thought I might put all the images in the same place and hide them, making them visible and bringing them to the front on mouseover of the corresponding hotspot.
[Code]...
View 6 Replies
View Related
Feb 18, 2010
I have the impression $('h1:after') e.g. doesn't work. How to manipulate these pseudo selectors with jQuery?
View 1 Replies
View Related
Oct 5, 2009
My button when click call cal function, inside cal function I need to find parent so I can access other element, but I donot know how to pass parameter to Selectors/has(for some reason $("div :button").each(function()... no work here)
Code as below:
function cal(event) {
if (!event) event = window.event;
[code]....
View 1 Replies
View Related
Jun 4, 2009
I'm trying to do is simple "select all" checkbox script. The problem is, no matter what I seem to do, only first element is matched. $("input:checkbox").attr("checked", true); checks the first box only. Same with: $("input:checkbox").each(... I even tried copying this script directly from the jQuery documentation page: $("div").css("border","9px solid red"); It applies a red border to the first div on my page.. the example in the documentation applies it to all divs.
View 5 Replies
View Related
Jul 1, 2010
Ok, this seems easy, but I am struggling. I have this...
$("a[href$='mp4']").click(function () {
But I want it to work for mp4 or mov or more. Something like...
$("a[href$='mp4'||href$='mov']").click(function () { <-- which doesn't work apparently
View 2 Replies
View Related
Feb 23, 2011
im currently creating a dropdown menu with an animation to it, my current jquery script is as follows
$(document).ready(function () {
$("ul.menu_body li:even").addClass("alt");
$('ul.menu_body, img.menu_head').hover(function () {
[code]....
View 2 Replies
View Related
Mar 24, 2010
Multiple selectors not working
View 8 Replies
View Related
Mar 23, 2010
i've been trying to figure the best method to achieve obtaining siblings between specific selectors. Let me be concrete with an example:
...
<tr class="rowTypeA">
...
[code]....
View 4 Replies
View Related