JQuery :: Post Class Of Parent UL And Clicked LI To PHP

Jan 13, 2011

I have a menu as follows
<ul id="nav">
<li> <a href="#">Golf</a>
<ul class="golf">
<li class="engine"><a href="#">Engine</a></li>
<li class="brakes"><a href="#">Brakes</a></li>
<li class="transmission"><a href="#">Transmission</a></li>
<li class="interior"><a href="#">Interior</a></li>
<li class="running_gear"><a href="#">Running Gear</a></li>
</ul></li>

<li><a href="#">Polo</a>
<ul class="polo">
<li class="engine"><a href="#">Engine</a></li>
<li class="brakes"><a href="#">Brakes</a></li>
<li class="transmission"><a href="#">Transmission</a></li>
<li class="interior"><a href="#">Interior</a></li>
<li class="running_gear"><a href="#">Running Gear</a></li>

</ul></li>
<li><a href="#">Passat</a>
<ul class="passat">
<li class="engine"><a href="#">Engine</a></li>
<li class="brakes"><a href="#">Brakes</a></li>
<li class="transmission"><a href="#">Transmission</a></li>
<li class="interior"><a href="#">Interior</a></li>
<li class="running_gear"><a href="#">Running Gear</a></li>
</ul></li>

<li><a href="#">Jetta</a>
<ul class="jetta">
<li class="engine"><a href="#">Engine</a></li>
<li class="brakes"><a href="#">Brakes</a></li>
<li class="transmission"><a href="#">Transmission</a></li>
<li class="interior"><a href="#">Interior</a></li>
<li class="running_gear"><a href="#">Running Gear</a></li>
</ul></li></ul>
I want to post the class of the parent ul and the clicked li to php when they are clicked say as "model" and "part". I'm sure its simple but i cant seem to quite grasp how to do it.

View 1 Replies


ADVERTISEMENT

JQuery :: Select Class Which Is In The Same Class Of Class, On Which Clicked?

Jun 3, 2010

My code: [URL]... When I click on Upraviť in class edit I need add some HTML code to begin and to end of class entry how to I can select class entry in the same class post on which I clicked?

View 1 Replies View Related

JQuery :: Assigning A Click To A Class Selector - Once Clicked The Class Is Removed - Does This Work

May 5, 2011

I have a huge blob of code but the main part I am focusing on is this

$('.billboard_click').click(function () {
//this remove class
$(".billboard_click").removeClass("billboard_click");
});

1. Execute a click event when the div with the class 'billboard_click' is clicked

2. Once clicked, remove the class from that very div to avoid another click from happening

3. Execute a series of events such as animations, etc

4. add the class back to the clicker div

The code does not seem to work as expected but I am wondering if I am having issues elsewhere at this point and wonder if this actually is known to work

View 7 Replies View Related

JQuery :: Get ID Of A Clicked Parent ID?

Mar 14, 2010

Get ID of a clicked parent ID?

[Code]...

View 1 Replies View Related

JQuery :: Post Clicked Elements Attribute To Php?

Jan 12, 2011

I have a jquery menu from which i want to post certain information when a particular element is clicked to my php script which searches a db based on the variables input and presents the information back on the page.

So jquery drop down menu has 4 sections all with drop downs. I want to return results based on the section and then the drop down clicked

So clearly i can get this working fine using html and a form but i just want to use the information in the <li> elements instead..

Can i in jquery do this: upon clicking said element post the class attribute and txt as two things to my php scripts?

View 2 Replies View Related

JQuery :: Getting Rel Attr Value From <p> With An ID When Parent TD Is Clicked?

Nov 26, 2010

Not really sure how the best way to start explaining this, but I have a small script set up that activates a second section to an accordion to display information. The idea is that a table cell will be clicked and then the second according will activate displaying information relating to the cell that was clicked in accordion part 1.

I have managed to get it to update coding in the var's by hand, now I want to be able to get certain bits of information from a nested div that is hidden in the table cell (I know, very messy - but it will all be made a little less messy in the future when I have got the process correct).

[Code]...

View 1 Replies View Related

JQuery :: Select Parent Of Link When Clicked?

Sep 7, 2010

I have a list of divs that each look like this (simplified):

<div id="property1" class="property cms-repeat"> <h4>Property 1 - <span class="location cms-editable">location3</span></h4> <p><span class="download">Request a copy of the full property details <a href="#" title="Request property details" class="request"

[code]....

View 2 Replies View Related

JQuery :: Access Parent Context From $.post?

Oct 26, 2011

Is it possible to access the parent context within $.post to asign the result to the parent selection?

See this code here:
$("a[href='country#']").click(function(event) {
var dieBusinessUnit = 'THIS VAR SHOULD CONTAIN RESULT OF $("businessunit", xml).text())';

[Code].....

View 5 Replies View Related

JQuery :: $.post(), Php File In Parent Directory?

Oct 26, 2009

Is it possible to use $.post() with the php file in parent directory or a completely different directory?

View 1 Replies View Related

JQuery :: Getting Div Class Near Clicked Link?

Jan 25, 2011

Lets say I have a function that is going to be called when a link is clicked like so:

<a href="javascript:someFunction();" >Click me</a>
<script type="text/javascript">
function someFunction()

[code]....

View 2 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 :: Trigger Child Link When Parent Is Clicked?

Mar 31, 2011

I want the <a/> in an <li/> to be triggered when the click happens anywhere within the </li>. So given the html...

<ul>
<li><a href="javascript:alert('clicked!')">test</a> <span>some other stuff</span></li>
<li><a href="javascript:alert('clicked!')">test</a> <span>some other

[Code]....

View 7 Replies View Related

JQuery :: When A Link Is Clicked That It Will Only Change Elements That Are Within It's Parent Div And Not The Others?

May 27, 2010

I have several divs that each have a certain link. How can I make sure that when a link is clicked that it will only change elements that are within it's parent div and not the others?

View 1 Replies View Related

JQuery :: Show The Current Clicked Div Class?

Aug 13, 2009

I need to use the this keyword to differentiate which div class name needs to show. Currently, my code below on '.bioclick' click event, every bio_desc is displayed or showed. I just want to show the current clicked'.bioclick' child '.bio_desc'. I tried using the this keyword but it did not work.

$('.bio_desc').hide();
$('.bioclick').click(function() {
$('.speaker_wrapper').children('.bio_desc').toggle
('slow');
});
});

View 1 Replies View Related

JQuery :: Add A Class To A Parent Li With It?

Oct 10, 2010

I've got a list similar to the following [code]...

I'm new to this jquery malarkey so I'm shooting in the dark somewhat here.

View 8 Replies View Related

JQuery :: Get Post Data From A Page Loaded In Iframe In Parent?

Sep 24, 2009

How to get post data from a page loaded in iframe in parent page

View 1 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 :: Cannot Reach Parent Class

May 27, 2010

why I'm not able to remove the class "hasLink" from the parent element that contains the class ".test"

<ul>
<li class="hasLink">
<div>
<a href=" class="link">link</a>

[Code]....

View 2 Replies View Related

JQuery :: Unable To Add A Class To The Parent?

Mar 21, 2011

<ul id="menu">
<li><a href="#"><strong>Electors</strong></a>
<ul>
<li><a href="A.asp">Conditions Required</a></li>
<li><a href="B.asp">Verification of Entry</a></li>
<li class="submenu"><a href="#">Special Measures</a>
<ul>

[Code]...

With the above code, i want to add the "active" class to the <li> tag related to the current page. "get_cur_page" is an ASP function that returns the page so if you are on the page J it will return J.asp.

I cant get this code to work, the goal is to have the "active" class applied to the <li> tag surrounding the active page's link in the menu.

View 4 Replies View Related

JQuery :: Adding Class To Clicked Item + Hover Effects?

May 26, 2011

So, I have this menu set up that reduces the opacity of all but the hovered link. It works fine, but it's a video playlist, and I realized that I need to make sure that this style persists after the link has been clicked.I can figure out how to add a class on click, but how to combine the two? How can I set it up so that, if the link doesn't have the class .selected, the opacity will be at 0.3. Unless, of course, it's being hovered over.I'm in a little over my head here. Here's what I'm working with:

Code:
jQuery(document).ready(function() {
jQuery("#links").delegate("li", "mouseover mouseout", function(e) {

[code]....

View 1 Replies View Related

JQuery :: Retain A Class After A Link Is Clicked - For Pseudo Checkboxes?

Nov 23, 2010

I'm creating a list of items which visually look like checkboxes. They will work similar to the ones used on eBay that allow you to select only new/used items. Mine are a little simpler though. Here is the markup:

<li>
<a href="#" class="catHeader trigger">Designers</a>
<ul class="nav-ul toggle_comtainer">

[code]....

View 3 Replies View Related

JQuery :: Get ID's Of Children Div's Of A Class With A Specific Parent Div ID?

Mar 8, 2011

I'm building a volunteer translation site. In order to constantly update only paragraphs that multiple translators are working on, I need to pass an array to PHP of A: which paragraphs are open, and B: which translations have been submitted and are visible on the user's screen. PHP will then compare this with what is in the database and tell jQuery to add new submitted translation paragraphs or remove deleted ones.I've managed to make a string of all the open Div's and have it updated every second, like this:

function cycle(){
var data = '';
$('.paragraphtobetranslated:visible').each(function(){

[code]....

View 2 Replies View Related

JQuery :: Remove Class Of All A-tags In A Parent-node

May 25, 2011

I want to remove the class-attribute of all <a>-tags in this table-tr:

In addOrder, I want to use removeClass("back_blue_3").removeClass("back_blue_2") of all <a> in this tr.

I tryed this:

But this causes just an error.

How I have to handle it?

View 3 Replies View Related

JQuery :: HasClass / RemoveClass Bug - Set Add / Remove A Class Called 'active' To / From A Link That Is Clicked Within A DIV

Sep 12, 2011

I have a link as such:

[Code]...

In a nutshell, I need to set add/remove a class called 'active' to/from a link that is clicked within a DIV. So if the link has the class 'active' already assigned I need to remove it and vice versa however the issue I am having is that I have to double click the link in order for it to work!!

View 6 Replies View Related

JQuery :: Apply Class To Parent Li In Nestled Order Lists?

May 1, 2010

I am following this articleam able to successfully add aclassto the active page li menu item but does anyone know how to modify or add to thisscriptso that any parent menu li items also get theactiveclass?I would like to avoid having to add ID's as the menu items will be changing alotMy menus have three levels maxhere is my menu structure andcodeso far* Menu *

<ul class="topLevel">
<li><a href="/home.html">one</a></li>
<li><a href="/main-two.html">two</a></li>

[code]....

View 1 Replies View Related

How To Keep All Childnodes Of The Clicked Parent

Nov 11, 2010

I have a javascript for a tree view but i need to change it according to the requirement. Lets start with example with the treeview as follow:

1 Door phone
1.1 Ready Kits
1.1.1 Audioset
1.1.2 Videoset

[Code]....

Now the thing is in the current treeview a single category is open at a time. like if 1.1.1 is open 1.1.2 will b closed and similarly if 1.1 is open...1.2 will b closed. But i want that when i click on 1(Door phone) ie Door phone...evry node should be opened instead of just one similary when i click on 2(CCTV), all its node should be opened.

View 7 Replies View Related







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