Set The Class To Active When It Is Clicked?

Mar 6, 2009

I'm trying to make a tabbed navigation system, but I don't know how to set the class to active when it is clicked so that it displays differently.

<body>
<div id='tabs'>
<ul>
<li><a href='#'>Link1</a></li>

[Code]....

View 4 Replies


ADVERTISEMENT

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 :: Turn On An 'inactive-state' CSS Class For A Group Of Divs, Then Reset One Div To The 'active-state' Class?

Feb 2, 2011

I am attempting to make a menu that has a background image that changeswhen you rollover or click a menuitem. I've got the hover effect working fine with CSS, but am trying to implement the click event via jquery with the following:

CSS:
div.SustainResourcesMenuTabs
{ background-image: url('/images/departments/commdev/sustainability/menu_tab.jpg');
}[code]....

My process is to reset the entire menu to the inactive state, then switch on the active state for the item that was clicked. Eventually, the item that was clicked will display its corresponding body section as well. I've tried using the CSS pseudo-class "active", but since the entire div is the link, that is unavailable. I've also tried multiple variations of addClass/removeClass, toggleClass, and setAttribute/removeAttributebut nothing hasworked so far.

View 2 Replies View Related

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: Class / Fade - Menu Link "active" Class Not Working

Dec 5, 2009

I have a script that fades links on load and im trying to get this to work on everything but the menu link that has the "active" class

Code:
<div id="menu">
<ul><li id="Home"><a title="Home" href="/" style="opacity: 0.6;">Home</a></li>
<li class="active" id="projects"><a title="projects" href="/projects/" style="opacity: 0.6;">projects</a></li>
<li class="last" id="Contact"><a title="Contact" href="/contact" style="opacity: 0.6;">Contact</a></li>
</ul>
</div>
[Code]...

View 4 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 :: Adding A Div Class To An Active Li?

Nov 8, 2010

adding a class to an active li. I'm working in drupal, and the system adds a .active class to the DOM of whatever li class was last selected.In my .js file I added the following:

$('document').ready(function(){
var tabActive = $('#tabs-tabset ul.primary li.active a');
tabActive.addClass('tabknotch')
});

This works perfectly...for the first tab. when I navigate to the next tab the class does not change. I thought maybe there's a variable in the dom that is causing the class to not move, so I tried narrowing the div that it looks for and tried this:

$('document').ready(function(){
var tabActive = $('li.active a');
tabActive.addClass('tabknotch')
});

This achieved the exact same results...so there's obviously something I'm missing, but don't know what it is. If it's any help, here are two examples of the generated DOM that occurs when clicking on the active li. The first example is the div that has the class added, and the second is a div that does not have anything added. <li class="overview ui-tabs-selected active first tabknotch"><a href="#overview"><span class="tab">Overview</span></a></li> (this is the active tab where the jQuery succesfully adds the "tabknotch" class)<li class="features ui-tabs-selected active"><a href="#features"><span class="tab">Features</span></a></li> (this is the active tab that does not have the class added when clicked. When this li is active knotchtab remains on the other li that no longer has the .active class attributed)

View 2 Replies View Related

JQuery :: Adding .active Class To Nav?

Sep 14, 2011

I have a single page website and I would like to add an .active class to my links when I reach a certain point on the page (this will be done by unique div or section id's). The classes are currently empty, so I would need to be able to remove and replace the .active class accordingly.

Here is my html:

<
nav
id="main-nav">

[code]....

View 2 Replies View Related

JQuery :: Add Active State Class To CSS?

Jan 11, 2012

Having a navigation menu desighned in photoshop, how can I use jquery to add a active state class to my css which can use the same hover style for active menu?

Here is the HTML code:

<ul id="nav">
<li id="list1"><a href="#"><span>Home</span></a></li>
<li id="list2"><a href="#"><span>About Us</span></a></li>
<li id="list3"><a href="#"><span>Projects</span></a></li>

[Code]....

View 3 Replies View Related

JQuery :: Set Color On Active Class?

Sep 1, 2009

So basically I have this menu, the only problem I have is that I would like the colour of the text depending on which the 'LavaLamp' Image is when loading up to be red. For example when loading up this website (my url to the menu) [URL] I would like the text 'Home' to show red, since it is the active tab on page load.

View 1 Replies View Related

Assign Active Class To Link?

Dec 3, 2010

I have some problems with assigning a class to my included navagation menu. I would like to give the last clicked menu item a active class so I can style it but i have no clue how that works with javascript. as you can see i have three files two pages which included the same menu. Now I would like to set the first page to active because it would be the page the would start. but then when someone clicks the second page it should become inactive and set the active class to the secone link.

[Code]...

View 3 Replies View Related

JQuery - Active Navigation With Class?

Dec 18, 2010

I am attempting to set it so that upon clicking a link within this Joomla site (from the navigation menu), the link will become bold. I have already implemented CSS for ".active" and set the "LI" class to 'active' to the first class.

I have done a search for the JQuery code to do this, but each example that I tried did not work at all. The class remained to be on the first link, home.

[Code]...

View 1 Replies View Related

JQuery :: Adding A Active Class To A Link?

Nov 15, 2010

I have this script where if users click on a link it will show that particular link in a slideUp, slideDown effect. For example There are two links and Two divs.Both Divs are hidden to start. If the user clicks link 1, Div 1 will appear. If the user clicks link2 Div 1 will close and Div 2 will appear. how do I add a active state when the user clicks on each particular link.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html
xmlns
="http://www.w3.org/1999/xhtml"

[code]....

View 1 Replies View Related

JQuery :: Multiple Active Links On Same Class

May 9, 2011

I have a web page wich has several list like this one:

So several ul's list wich are inside severals divs of class <div class="languages_cont" >

I need to make active the first <a> of each one this ul's and it need to be done in Js (when i say active i mean the <a> text will become bolded, so right now i've been trying using a each but no luck yet, it only selects the first it encounters.

View 2 Replies View Related

Little On Dinamically Change Class Of Active Links?

Mar 26, 2009

I have three links that call three functions that change a div. Now, I want to change links color when active. I made this so:

var act = "";
function doActive(obj){
obj.className='active';
if(act != undefined && obj != act){
act.className = 'off';

[Code]...

View 4 Replies View Related

JQuery :: Auto-adding .active Class To Menu?

Apr 11, 2010

I'm trying to add .active class to a menu, based on the URI. It works with URL's like: /, /products, /about, /contact but not anymore when you go to /products/some-product.I know what's wrong, but I can't find a working solution. I've tried a regex, but that didn't work either...

The code:

$(function() {
var path = location.pathname;
if (path) {

[code]....

View 4 Replies View Related

JQuery :: Adding Active Class For One Page Link?

Mar 9, 2009

I am working on the project that will be only one page and the menu will link to the same page. The problem is that i can't add active class to the menu the same we did in the normal linked pages. For example, in css we can see .about .menu ul li .active a { color:#black} . This means the menu will be in black when the user is in the about page. I can't do like this in one page scroll menu as there is only one menu. Are there any ways to let the menu change (add active class)when i scroll to some specific part of the page?

View 3 Replies View Related

JQuery :: Get An Active Menu - When Page Reload Loose The Class ?

Oct 9, 2011

I would like to get an active menu but when my page reload i loose the class.

With a button it works fine but not when the page reload with a href it only works when i add a #.

View 3 Replies View Related

JQuery :: Cycle Plug-In: Pager Active CSS Class Not Working

Jul 20, 2010

I'm using the cycle plug-in with an existing nav bar (2 buttons). It functions correctly -- but for some reason -- I can't get the corresponding nav button to change CSS class and show as highlighted.

jQuery:
$(document).ready(function() {
$('#slideShow').cycle({
fx: 'fade',

[Code]....

View 1 Replies View Related

JQuery :: Superfish: Leave Sub <ul> Menu Visible When A Tag Class Is Set As Active

Sep 13, 2009

I'm using superfish for a drop down hover menu. It works perfect except I would like the sub menus to remain visible when one of the <a> tag from the menu has class="active". Here is a quick overview of the menu html:

<ul class="primary-links">
<li>
<a href="main">item parent 1</a>
<ul>

[Code]....

If the current page is main -- class='active' is automatically added to the A tag (with Drupal). If you are currently in page2, the class='active' is added to the A tag of the sub-menu. Now, how can I get the sub menu to be always displayed -- regardless of superfish, either when item parent 1 A tag is set as class='active'of the item child A tag is set as class='active'.

View 1 Replies View Related

Get Xml With Clicked Class?

Nov 26, 2010

I am currently working on a function with jQuery that searches for the class that was just clicked within xml. But the result only seems to parse me the last entered result. I keep struggeling to get this fixed so I hope someone on sitepoint is able to help me out.

The jquery looks like this:

Code:

$(".links dd").live("click",function(){
var linkName = $(this).attr('class');
description(linkName);

[code]....

In this case it would only show me the description of Google, even when I click to see the information/description about sitepoint.

View 4 Replies View Related

Getting A Clicked Links Class

Aug 11, 2011

Im trying to get the class of the clicked link when the below function is run, i need the variable "videoID" to be the class of the clicked link.

Heres my javascript attempt:

Code:

And my html

HTML Code:

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

Apply Selected Class To One <li> When Another <li> Is Clicked On

Sep 4, 2010

I currently have a script that dynamically adds a css class called "on" to a menu item once it is selected, turning that link red to show that it's active. Here is the web page: [URL] As you can see, if you click on "Dimmer" or "Pol Pot's Birthday", or one of the three Patriotville scene links (1, 2, or 3), those links stay red. But what I need to happen is that when the user hovers over OR clicks on "1", "2", or "3", the word "Patriotville" also turns red along with those links. Here is the current code:

<script language="JavaScript" type="text/javascript">
/*<![CDATA[*/
var Lst;
function CngClass(obj){
if (Lst) Lst.className='';
obj.className='on';
Lst=obj;
[Code]...

View 1 Replies View Related

Remove/add Link Class When Clicked?

Mar 8, 2007

I am on a tight deadline with none of my Javascript books around to reference ... Can anyone help me with this script:

View 13 Replies View Related

Fetch Records By Clicked Class Name?

Nov 29, 2010

Basically what im trying to do is, when a link is clicked (within a certain div) it reads out the class of that link and searches within XML or JSON for the title and then finds the description within that record.

View 1 Replies View Related







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