JQuery :: Different DIV / Target And Same Function

Aug 26, 2010

As I work on a complex navigational menu (complex as in lots of pages and categories) I am trying to figure out how to extract the numerical part of the triggering div's id and then attach it to events within the code, thus using one set of code for multiple menu pairs. A snippet of code is below to show all the uses of the numerical part (using the jDiv plugin from Skyrocket Labs).
var hide01 = false;
$("#nav1").hover(function(){
if (hide01) clearTimeout(hide01);
$("#hidden1").show();
$(this).addClass("active"); } ...... etc

In general someone hovers over the #nav1 div, which in turn reveals the #hidden1 div, same for nav2 & hidden2, nav3 & hidden3, etc. Right now I am simply duplicating the code for each pair, but it would be nice to figure out how to use variables and reduce code size. I understand it is possible to perhaps get the numerical part using
$(this.id).replace('nav','')
But haven't figured out how to attach it to the various values within the code (hide, #nav, #hidden).

View 2 Replies


ADVERTISEMENT

Target Firefox Css In Function?

Apr 12, 2011

we are incorporating a js calender into a page, as usually, there is a issue with calender clip location, the css of calender is in javascript, i have tried targeting firefox enough with tags like

(firefox, -moz-binding:, load-mozilla-css, ff4)

in the following code snippet

if (browser.dom || browser.firefox){
document.writeln('<style>');
document.writeln('@-moz-document url-prefix()');

[Code].....

View 1 Replies View Related

JQuery :: Submenu From Array - Function ToggleOptions Takes 3 Variables - Target - Array - State

Feb 15, 2011

I am trying to understand somecode. I don't think I am understanding everything correctly. Can someone confirm or add to my understanding?

Here is the code, below is my explanation:

- CODE 1 - is saying if the the class subnav_dd is called on an anchor tag on a li, then make the function in the if statement "live". (Live in a sense binds the function to the condition, but unlike bind it allows the condition to be used more then once. ) So if the class subnav_dd is the parent, and has a class of .dis then prevent anything below it from firing. CSS - If code 1 is true, then I will only get the first li to fire, the remaining ones will not.

- CODE 2 - This one is a little tricky. Function ToggleOptions takes 3 variables (target, array, state). The condition is if the div subnav + target have siblings, then check to see how many siblings are there. Put the amount of siblings into an array, then check the state of each sibling. I don't completely the rest of it.

I think if the div subnav is called and something is found in the array then the class dis is either added or removed. Then what? I don't understand why I still need the else that adds a class to #subnav_ +.target

View 1 Replies View Related

<form> Target Won't Target Window

May 19, 2011

i want to submit form data from the popup window, close the popup, and load in the main window. problem is, it always opens a new 'tab'. i'm using google chrome, i didn't think to try this in

in the <head> of the 'main' window:
<script language='javascript' type='text/javascript'>
window.name='main';
</script>

[Code]....

View 4 Replies View Related

Target="_blank" Functionality - Target Page To Open It As Top Location From Within An Iframe

Mar 24, 2011

I am using the following javascript on the target page to open it as top location from within an iframe, which is working ok.

<script type="text/javascript">
if(self!=top) {
top.location.href=location.href
}
</script>

However my problem occurs when the user uses the browsers back arrow to return to the previous page, the script executes again returning them once more to the page they have come from. Is anyone aware of a work around to this problem as it would seem there isn't one? perhaps even a better solution for opening the target page from the iframe as top location. This is really causing confusion for users, and I really need to get the issue fixed.

View 2 Replies View Related

JQuery :: Get The Value Of The Id When Using .target?

Oct 9, 2011

I want to know what div id I clicked on. My code looks like this:

[Code]...

I want to just know what the value of the div id is, in this case it would be "elem1". I saw .nodeName returns "div" but there's no .idName.

View 1 Replies View Related

JQuery :: Target A P Tag In A Div On Mouseover?

Jul 7, 2009

I have the following code

$('.box').hover(
function(){ $(this).css('background-color','#6bc6f2'); $("p").css('color','#fff') },
function(){ $(this).css('background-color','#fbf9f9'); $("p").css('color','#000') }
);

I have the .box class applied to a div basically I what to hover over the div change the background color of the div and at the same time change the text color of any text wrapped in p tags.

I am getting close but with this code every instance of the p tag gets swapped out I need to know how to target only p tags in the div that I am mouseing over

View 3 Replies View Related

JQuery :: Target A Tag With His Title Value?

Mar 23, 2011

I'm trying to target an element to highlight it when I roll hover on a a tag list (which is a result of ajax request)[code]...

View 5 Replies View Related

JQuery :: Target Id Of Div That Was Clicked?

May 18, 2009

I have a func:

$('div.tabnav ul.tabNavigation a').click(function () {
this.hash e.t.c
//Is there a way to find out the name of the div or jquery id that was clicked. E.G so I can go ( in pseudo )

[Code].....

View 1 Replies View Related

JQuery :: Target A Specific <div>

Mar 3, 2011

I'm in the midst of some volunteer work for my local roleplaying community, creating their website. I want to use a menu bar in the top with a <ul> and simple "a href"'s to switch between the main content. The content of each 'page' will be retrieved from a phpBB board using php.

I've chosen jQuery because I want to learn more about it and have stumpled upon this problem: How do I target a div, show that, and then hide the current one (or simply all other divs with a certain class). Maybe it has to be done the other way around, hide and then show, to prevent the page from being displayed in a weird way while they're swapping place.

If possible, I would also like to only load the content of the content divs when the menu button is clicked, so it doesn't take load time at first.

View 4 Replies View Related

JQuery :: Target An IFrame With No Id Within A Div?

Mar 13, 2010

I am trying to set some styles for an iFrame contained within a div. I know the div's id but the iFrame has no id. What is the proper way to target the iFrame?

View 3 Replies View Related

JQuery :: Anchoring Target When Using SlideToggle?

Jan 26, 2010

i'm using slideToggle which reveals a large element upwards;

[URL]

Given that the element revealed is very high the anchor tag that is used to show/hide sometimes disappears. I've tried return false; but that doesn't fix it

View 1 Replies View Related

JQuery :: Drop Target From Dragable?

Oct 24, 2011

In my sortable, i have a placeholder element which says "Please drag somethign here". After the user has done that, it should disappear, but just, if the draged item was droped into that specific list. And that's my problem. I don't know, how to check, where the dragable was droped. :/ I couldn't find anything in the event object or docs but probably it's quite easy.Of course, i could save the state of the list and then check it or something like that but that sucks.Here's my current code, it just deletes the placeholder but even if you drop the dragale into nowhere.[URL] 2nd I didn't investigate this too much but since im opening a new thread...The html element i drag around, should get wraped with a tr abd td. How do i achieve that?

When having e.g:

<table id="x">
<tr>
<td>

[code]....

and i do $("#x").remove(); it seems to remove the content and the table element but not its td's and tr's, why?why is draggable->stop: triggered on page load?If i have e.g. stop: alert("hi")i'll get a alert hi. if i put it in an external function the same, but if i do $('.draggable table').draggable({disabled: true};); nothing happens on page load, like i'd expect. why?

View 1 Replies View Related

JQuery :: Pikachoose In An Iframe - With Url Target ?

Jul 15, 2011

Using a pikachoose slideshow inside an iframe and for some reason adding a url target of _top or _parent is not working. It just opens up the link in the iframe window no matter what i do.

I'm working on it in the staging area of my site- [url] You can see when you click on one of the images it doesnt fill the entire window.

View 4 Replies View Related

JQuery :: Set Target For ScrollTop And ScrollLeft?

May 18, 2010

I am able to get the page to scroll using something like this

$("html:not(:animated),body:not(:animated)").animate({ scrollTop: rw_X, scrollLeft: rw_Y},2000);

I was hoping to be able to target the animate element by using something like this

document.body Is this not possible? What are some targets that allow you to scroll the page (the position of the scroll bars)?

View 2 Replies View Related

JQuery :: Put Variable V1 Into Id Selector To Target DIV

Oct 22, 2011

I'm am trying to make a script that looks something like this:[code]This of course doesn't work. I don't no how to put the javascript variable v1 into the id selector to target the DIV with id="v1".I'm more a designer then a programmer.

View 5 Replies View Related

JQuery :: Target Top LI Level Individually?

Feb 22, 2010

Am having a fiddle with the following for a while now and am not getting anywhere - also not knowing if what i am trying is actually the best / fastest way... What i have is the following menu

<ul>
<li>Test</li>
<li>Test

[code].....

View 11 Replies View Related

JQuery :: Target All Images For A WP Theme?

Jul 20, 2011

I need change the following jQuery script to target all images for a WP theme. I found two codes that may do it, but I don't know where to place them.

(sample)

Code JavaScript:
$("img[src='left1.gif']").hide();
or

event.target. As it stands now, the script doesn't load images, the browser takes over and loads the image.

(I've included the original comments in the script for safe keeping)

Code JavaScript:
jQuery(function(){
// Tabs
jQuery("#fbfwTabs").tabs();

[Code].....)

View 7 Replies View Related

JQuery :: Target An Image Within Array Within Script?

May 24, 2011

I'm pretty new to jquery. What I have is an array of images in a slideshow.

View 16 Replies View Related

JQuery :: Clickable Blocks With Target In New Window?

Jul 19, 2009

so this may be a simple question. Anyway: This Script forces a div to be "clickable" what works fine.

$(document).ready(function(){
$(".pane-list li").click(function(){
window.location=$(this).find("a").attr("href");return false;

[code]....

View 7 Replies View Related

JQuery :: Frameready - Get The Data In The Target Frame?

Jul 25, 2009

I want to use to pass data to an iframe. The example on the site is as below.

$.frameReady(function(){ $("<div>I am a div element. "+frData.myVariable+" </div>").prependTo("body");}
, "top.mainFrame"

[code]....

View 1 Replies View Related

JQuery :: Way To Add Target Attribute To Window.location

Aug 22, 2011

I have a homepage with two frames. The left frame is the navigation menu with about 30 links to different websites. The right frame (frame name is "display") is used to display the content of websites when user click on the links on the navigation menu.Left Navigation MenuThis is part of the codes of the Left Navigation Menu:

<div id="LoadPage">
<a id="link1" href="http://domain1.com" target="display">Website 1</a>
<br>

[code]....http://domain1.com

View 5 Replies View Related

JQuery :: IFrame Css Manipulation Across Target Site?

Sep 7, 2010

I need this iframe for a facebook tab, since they changed the width to 520px. The original page in the iframe is 700px wide, and I've changed a few CSS properties using the frameReady plugin. It's works just fine, but trouble starts, when i'm navigating the target site, the CSS properties I've changed goes back to the original settings.

This is my code:

<script>
$.frameReady( function() {
$("#gmap-auto1map-gmap0").css("width", "520px");
$(".views-view-grid").css("width", "520px");

[code]....

Try clicking any of the 'view on map' links, then you'll see where I'm getting at.

How could I work around this? Can I make it apply the script every time something new loads into the iframe?

View 1 Replies View Related

JQuery :: Target Specific Ul List Items For Css?

Jul 1, 2009

How would I target (with jQuery or normal javascript) the 5th and 6th li in an unsorted list for styling? I need to change the css for only 2 items in a list.

View 4 Replies View Related

JQuery :: UI Hide Destroys The JS In The Target Element?

Sep 15, 2009

I would have wished it under better circumstances. However, I'm having a quite annoying problem. I'm using jQuery UI hide effect and for some reason it messes with the DOM and/or and completely messes up some of my controls.$('#dvucCustomization').hide('fold', {}, 500);Is that the correct way to call the hide effect on a DIV element?I also tried simply:$('#dvucCustomization').hide('fold');and the same result: the JSs I have in the hidden/shown element are not working any more.

View 6 Replies View Related

JQuery :: Displaying Hidden Div Content Into Target Div?

Apr 21, 2010

1) I have a series of divs embedded into a page, sort of like an FAQ setup. Each has a unique id like id="service1" etc.

2) i'm using an unordered list with each li being a hyperlink to the div id's

3) the div's are set up as name anchors ( <a name="service1">Service One</a. ) so I can hyperlink to them via the <a href="#service1">Service One</a> method

4) There's 22 divs and they need to be hidden until summoned. Therefore, I set $('.service').hide(); to make them all disappear.

Now, where i'm stuck is in how to summon them individually and have them appear when the appropriate list hyperlink is clicked. I'm using:

$('.servicelist a').click(function() {
var toLoad = $(this).attr('href');
}

So it's telling it to load the info found at the appropriate link. This is where i'm stuck. I need help on

1) how to 'unhide' the proper div id containing the related data

2) how to point it to the right location in the page (target div)

View 4 Replies View Related







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