JQuery :: Determining Which Element Was Clicked

Nov 18, 2010

I have several <a> tags with the class 'a-menu-description', and an equal number of divs with the class 'menu-description'.

I am trying to get it so that only one div opens for the appropriate <a> tag, but when I click any of the <a> tags, all of the divs open up.

Here is my code:

Does anybody know what I can add in so that only the div associated with the <a> tag opens as opposed to all of them?

[url]

View 5 Replies


ADVERTISEMENT

JQuery :: Determining Which Element Is Clicked?

Jan 23, 2010

In my html head tag i have a script like as below

$(
function
(
)

[Code].....

I am trying to update some values on the page when an img is clicked. There are many img tags on the page. I am not sure how can i determine which one is clicked.

Do i have to add an onclick event to my img tags with some id parameter or is there a possibility to detect which element is clicked on the page without calling a function?

View 3 Replies View Related

JQuery :: Determining Which Of Two Submit Buttons Were Clicked In A Single Form?

Jun 10, 2011

Seems to me this would be a fairly common situation (if not commonly asked and answered), but the posts I did find about this subject didn't seem to

Given this basic code:
<form id="form" action="">
<input id="submit1">

[code]....

View 4 Replies View Related

Determining When Any Link Is Clicked On A Page

Jul 28, 2006

How could I determine when ANY link on a page is clicked and what that link points to without having to add a function call into onClick of every href tag?

View 3 Replies View Related

Determining The Existance Of An Element

Aug 17, 2006

I was wondering if there was any method for determining the existance (or no existance) of a given DOM element using its Id.

My problem is the following :

I have some ajax stuff that does some crazy things to my original document well... errr... such as simply adding some new layers with a unique Id.

What I wanted to do, from another JS function that is triggered later on, was to check if theses layers were existing or not before populating them.

For example something like :

if (document.getElementById("blah").exists){

//populate the thingie !

}

View 5 Replies View Related

Select Any Element - Hide The Element Clicked And Items

Jun 22, 2009

It is possible to make a script that hides the element clicked and this way hide the items I want.

View 1 Replies View Related

JQuery :: Get The Index Of An Element Clicked?

Apr 13, 2010

If I have a group of elements, <li>'s in a <ul> for example, is there a way I can know I clicked on n of them?

[Code]...

View 1 Replies View Related

JQuery :: Finding Out Which Element Exactly Was Clicked?

Jul 14, 2010

I am working on a little project with fullcalendar but while writing some callback functions stumbled upon an issue: Fullcalendar generates html that looks like this: <a><span></span><span></span><span></span></a>.

Now there is an eventClick callback that is fired when clicking on that <a> element. However, in that callback I would like to know which <span> element was clicked.

View 2 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 :: Get Position Number Of Clicked Element?

Jul 30, 2011

Let's say I have a table with 5 rows;

<table id="tbl">
<tr><td>Please</td></tr>
<tr><td>help</td></tr>
<tr><td>me</td></tr>

[Code].....

Now if someone clicks on the row with content "help" (2nd), I want to catch the click with jquery .click() and know within the jquery code that the user clicked on the 2nd <tr> element within table#tbl.

If someone clicks on the <tr> with content "this", my jquery code has to return 5, because its the 5th row.

View 3 Replies View Related

JQuery :: Read Clicked Li Element Text?

Aug 24, 2011

i am trying to make my custom made combobox with using jquery and ul li menus. So when mouse clicked to the li element i have to read its value and set its parent to the clicked element value etc. Basic selecting method. So how can i read the clicked li element value and set that value to the parent of it. Here my structure.

I want to read clicked li element text not other one i tried var htmlStr = $(this).text;

[Code]...

View 1 Replies View Related

JQuery :: Function - Element Is Clicked While SHIFT Key Is Pressed

Mar 24, 2009

i am trying to build a function that takes into account a click event and SHIFT key press event on a particular element.

so for example, i want to do something only when i click a box WHILE pressing the SHIFT key.

how do i program this using jquery?

View 4 Replies View Related

JQuery :: Toggle Checkbox When Parent Element Is Clicked

Aug 6, 2010

I have an <input type="checkbox"> whose immediate parent is an <a> tag. The <a> is significantly larger than the <input>.

I want the checkbox to toggle on/offwhether the <a> is clicked or the checkbox itself. I also wantto store the value of the checkbox after it changes.

This sounds simple butI'm having trouble with the event bubbling (as in, I don't understand it).

Here is my current code.

HTML:

View 4 Replies View Related

JQuery :: Perform / Execute So And So, When Anchor Element 'clicked'?

Jul 29, 2010

as you can tell by the following statements, i'm new to jQueryI'm trying to do the following (in plain english) without too much success.. ) when document ready.. 2) find the element with id 'next'.3) pull / take all 'li' elements, and perform so and so, all whilst excluding 'last' element.

$(document).ready(function() {
$('#next').click(function() {
$('li').each(function() { //for each li ..

[code]....

View 4 Replies View Related

Jquery :: Function - Swap The Class Of An Element When It's Clicked On

Jun 15, 2011

I'm trying to swap the class of an element when it's clicked on. Using jquery 1.6.1, here's what it looks like:

[Code]....

Now, for the sake of brevity�*i omitted some other stuff that is happening when they're clicked on. The problem is that the click event for .unchecked_container is firing fine and the class is changed, BUT when clicked on again�*the '.checked_container' click event is NOT firing.

View 1 Replies View Related

JQuery :: Select ID From Clicked Element And Pass It To The Server Using AJAX?

Apr 24, 2010

I wonder how you can select the ID of an element (li) you have clicked and pass this to the server to do stuff with it :-)

View 2 Replies View Related

JQuery :: Selecting Index Of Currently Clicked Item From Inside Another Element?

Sep 18, 2010

I'm trying to find the currently clicked index of .accordion_trigger from within another element.

When inside the .accordion_trigger click event I can simply do the below to get the current clicked index:

Code:
$('.accordion_trigger').click(function(){
var index = $('.accordion_trigger').index(this);
}
return false;
});

Obviously this doesn't work when called from within another element. I understand that 'this' is part of the problem but can't seem to find a way to form the code in such a way for it to produce a valid result. Thus far I only get -1 or 0.

When .accordion_trigger is clicked it has an "$(this).toggleClass('active').next().slideDown();" applied so in theory I shold be able to search for which of the .accordion_trigger's are "active".

I've also tried doing this via the below method but to no avail:

Code:
var current = $('.accordion_trigger');
current.each(function() {
if ($(this).hasClass('active')) {

[Code]....

View 4 Replies View Related

Stop Function When Element Is Clicked?

Nov 15, 2011

I have an auto running function which slides and changes content every 3 seconds.

But I also have another jquery effect which when you click, it also changes the effect, but at the moment I can't have both running at the same time as weird behaviour happens (when clicking, it changes then because 3 seconds have passed it changes again anyway).

We want a way where the user clicks to change, and the auto running function ceases until next reload of the page. code...

View 9 Replies View Related

Capture The Id Of An Element Being Clicked Within A Page?

Aug 23, 2011

Is there any way to capture the Id of an element being clicked within a page?

View 3 Replies View Related

Prevent A Click Handler Being Triggered When A Child Element Is Clicked?

Jun 1, 2011

I have two div tags, first div is the father and the second div is son Inside the father like this

PHP Code:

<div id="father"> 
<div id="son"> </div>
</div> 

[Code]....

My question is why the son inherits the father in the event.

I want when I click on the Father div implement the event, but when i click on the son does not implement anything because it does not have any event.

View 1 Replies View Related

Determining ID

Jun 17, 2006

I am generating a series of links with the name of my clinics. Each has its id (ie permission0, permissions1 . . .) and shows the name of the clinic. When the user clicks on the link I need to show the details of that clinic, but for the moment I don't know how to tell createDialog() which link was clicked. Code:

View 2 Replies View Related

Determining Position

Sep 9, 2006

I have some floating divs on my page.

When I click the div I want do display a menu over it, how can I
determine the position of the clicked div on the page?

View 6 Replies View Related

Determining Whether Checkbox Is On Or Off

Jul 2, 2009

I want to do is determine whether the selected checkbox is on or off. At the moment, when the checkbox is ticked or unticked the javascript returns false.

<form name="update_active" method="POST">
<input type="checkbox" name="active" onClick="updateActive(1, 'product')" />1
<input type="checkbox" name="active" onClick="updateActive(2, 'product')" />2
<input type="checkbox" name="active" onClick="updateActive(3, 'product')" />3
<input type="checkbox" name="active" onClick="updateActive(4, 'product')" />4
</form>
[Code]...

View 5 Replies View Related

Determining Row & Col Nr In Table?

Jul 28, 2006

Is there any way to determine the row & collumn number of a certain cell within a table?

I've looked at rowIndex and similar stuff, but I can not get it working. The info I found on this was minimal...

View 20 Replies View Related

Determining A Css Left Value?

Oct 4, 2011

Any one have a way to determine the left pixel position of an element on a page (such as <input ...>, given a fixed value was not supplied originally. This needs to be done dynamically so several elements can be aligned by setting their css left values. Jquery is available if that is of any use.

View 4 Replies View Related

JQuery :: Use To Write To A Cookie To Tell It What Image Map Coord Was Clicked So The Correct So The Correct Div In The Clicked To Page Opens?

Dec 26, 2011

[URL]..Default.aspx I have both a carousel with images andalso animagemap(notnot published yet)with coords that when clicked i want to write to a cookie file which image or image map coordinate was clicked, so when they are hyperlinked to the next page the correct div opens based on first reading the cookie written to on the previous page. Anybody have a basic script for reading and writing to a cookie using jquery in this fashion?

View 2 Replies View Related







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