JQuery :: Immediate Child Selectors?

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


ADVERTISEMENT

JQuery :: Function Is Invoked Twice When Using Multiple And Child Selectors Together

Jan 5, 2011

I want that whenever an HTML or its inner HTML is clicked then a function is invoked. For this,I am using Multiple selector with Child selector and the method is invoked twice. Here is the code that I am using.

[Code]...

How to replicate scenario?1. Click on "Text 1" and you will get the popup only once.2. Now click on "Text 2" or "SPAN text" and you will get alert popup twice. I want that if user clicks anything inside <div id="myDIV" style="background-color:Red;width:200px;">, event/alert to be invoked only once.</div></form>

View 2 Replies View Related

JQuery :: Change The Elements By Select Child Tag By Using Closet().child()?

Feb 9, 2011

<div class="userbox posts" id="pst146996">
<div class="imgholder">
<img alt="Chris Hardin" src="http://codebix.com/bp/1633.png">
<div style="margin-left: 20px;" class="commentbox">

[code]....

i want already select .postlike in $(this) now i want to select the tagh1 who is in .commentboxelements.i want to change the h1's inside text 1 to 2 so i write the code

$(this).closest('.posts').children('.commentboxelements center h1').html('1');

i try this but it's not worked anyway how i can do this.

View 1 Replies View Related

JQuery :: Syntax For First Child And Last Child In A Find Function?

Jan 5, 2012

so i wrote this slider with some help from an admin, everything works as I would like it to but I'm trying to make it a plugin so i need to tighten up a certain part of the code:

(function( $ ){
$.fn.jmSlider = function() {
// get total width of all li elements in the slider
var wrapWidth = 0;

[code]....

what i would like to do is instead of using "li:first" and "li:last", i would like to use first-child and last-child so the element doesn't need to be a li, in can be anything that is the direct child of the parent container.

View 2 Replies View Related

JQuery :: Remove Except First Child And Last Three Child?

Nov 24, 2011

I have a difficult work around Jquery. I want to remove all li items from the ul except first li and last three li how to remove the li elements from these list.

<ul>
<li>1</li>
<li>2</li>
<li>3</li>

[Code].....

View 1 Replies View Related

Parent Child Checkbox - Only Same Name Of Child And Parents Should Be Unchecked

Oct 28, 2010

I have created parent child checkboxes. When one child is selected, then parent of that child, other child of same name and parent of that same name's child will be selected... Now I want if I unchecked any child, then only same name of child and parents should be unchecked or if I unchecked Parent Child, then same name of parent and child will be unchecked.

[Code]...

View 1 Replies View Related

JQuery :: Adding Selectors To $(this)?

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

JQuery :: 1.3 - Not All Selectors Work In IE 8?

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

JQuery :: Regex In Selectors?

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

JQuery :: Selectors For Links <a>?

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

JQuery :: Use Variables Instead Of Css Selectors?

Apr 4, 2009

Can I do this:

function showDiv(curEl){
hideDiv();
$(curEl).css("visibility","visible");
}

View 6 Replies View Related

JQuery :: Square Brackets In Selectors?

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

JQuery :: Asp.net 'compound' Control Selectors?

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

JQuery :: Combine Selectors With && Condition?

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

JQuery :: Passing Variables As Selectors

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

JQuery :: Manipulate Pseudo Selectors :after And :before?

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

JQuery :: Pass Parameters To Selectors/has?

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

JQuery :: Selectors Only Matching First Element?

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

JQuery :: Logical Operators In Selectors?

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

JQuery :: Multiple Selectors In .hover Api?

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

JQuery :: Multiple Selectors Not Working?

Mar 24, 2010

Multiple selectors not working

View 8 Replies View Related

JQuery :: Obtaining Siblings Between Two Selectors?

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

JQuery :: Multiple Selectors All Changing Each Other?

Jul 19, 2010

I am working on a customised scoresheet for a Bible Quiz group. Basically, I want to click on a box and have a box come up with options for correct and incorrect. I just want it to affect the score for that one box. However, if you click another box, it changes all of the boxes.[URL]..Click the 10, 20, or 30 in the top left corner. It should update the points under the 4. Click on any of the boxes assigned to a person on the grey line. A box should come up with a Cor (Correct) or Incor link. Click on either option. Then click on another grey box and do the same thing. I don't want all of the points to change when one person's score changes. Does that make sense?

[Code]...

View 1 Replies View Related

JQuery :: Selectors For Clicked Element?

Mar 2, 2011

I have an html file that looks like the following.

<div id="outline-container-1_1" class="outline-3">
<h3 id="sec-1_1"><span class="section-number-3">1.1</span> Counting </h3>
<div class="outline-text-3" id="text-1_1">

[Code]...

View 2 Replies View Related

JQuery :: Use CSS Selectors That Are Not Defined In A Stylesheet?

Jun 8, 2010

Is it common to use CSS selectors that are not defined in a stylesheet (or anywhere else) to identify HTML elements? When using jQuery in ASP.Net with controls that implement INamingContainer, all it's children's ID's are automatically generated based on the id of the child control and the id of the container control (such as the Panel control) so we couldn't simply use $("#myChildControl") for a child control with the id of 'myChildControl'. The resulting client id would be something like 'mypanel_mychildcontrol' and for autogenerated controls within grids/tables, the id's get even more complicated and should be 'guessed'. So, how does/would people identify these types of controls when there are no preset CSS selector's for them?

On the server side, we can use the ClientID to get the generated ID, but for some things, I just want to do this totally on the client side without messing with code-behind.

View 1 Replies View Related

JQuery :: Using Selectors On A Text String?

Nov 16, 2011

I have a web site which creates printed output which will be printed out on A4 with a standard template that I use. Fortunately each output will (should?) fit on one page so I don't need to worry about the content munging the template. Now so far the approach I have used is to spin through a loop writing the content into a new div which is shown as a preview and which I then print. So far so good.

Now I want to generalise the templates so I can change them more easily. So instead of $('#printableblock').html(somefunction());I want to load a template from a file. That file would look something like;

<div class="A4">
<div id="header" class="header">
<div id="headleft" class="headleft">Address data</div>
<div id="headmiddle" class="headmiddle"><img src="headimage.jpg"

[Code].....

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved