Swaps A Toggle Image For News For A Plus Or Minus Sign Showing If The Div Is Open Or Closed

Dec 11, 2009

I have this little snippet of code that swaps a toggle image for news for a plus or minus sign showing if the div is open or closed. This code has worked before but i made a couple modifications today and it stopped working unexpectedly and i'm not sure why its failing. I am presetting the div tag with a plus sign with css and then modifying it with javascript. The problem i am having is that when the div tag has been opened it does not swap the image to min.gif anylonger. It remains max.gif.

[Code]....

View 5 Replies


ADVERTISEMENT

Jquery :: Toggle Plus / Minus Image And Animate Photo

Jun 23, 2011

How to do this but still can't figure it out. I'm currently reading jQuery from novice to ninja but I'm no where close to a ninja. I have a div containing list items, a photo, and a plus/minus button at the bottom of the div. The list items are absolutely positioned behind the photo. When I click on the plus button I want it to change to minus and animate the photo 29px from the top revealing the list-items behind it. Then I want to click the minus button changing it back to plus and animating the photo back up to the top.

I'm trying to accomplish something very similar to what you see on Kyanmedia.com. Except their images animate down and up on hover. I want my image to animate down then up on click and toggle the plus/minus image. I'm new to jQuery so I'm having a real hard time trying to figure this out. Everything I've tried doesn't work. The links to Kyan Media to get an idea of what I'm trying to do.

View 1 Replies View Related

JQuery :: Select All Inputs That Have A Value Containing A Minus Sign?

May 29, 2010

I am so close to finishing this project and I stumbled upon this block...

<div class="line first">
<input type="text" value="0,00" class="nbr first">
<input type="text" value="" class="date">
<input type="text" value="" class="date2">

[Code]...

I have here two inputs with class nbr. The initial values are set, and those values change programmatically over time. My list of inputs is a lot longer than this but I simplified. You can see the work in progress on [URL]. Just insert two random dates in page1 with the datepicker and the navigation will appear. At the end of a series of calculation I need to grab all inputs with positive numbers, and all inputs with negative numbers.I was thinking of selecting all fields with nbr class first, then use .filter() with a function

edit: nevermind, I found it.

$('input.nbr.first').filter( function(){
if($(this).val().indexOf( "-" ) !== -1) {return true} else {return false}
} )

View 3 Replies View Related

JQuery :: Classname Of Link Not Toggle Between Plus And Minus

May 10, 2010

I've just recently become enlightened by jQuery and would like to add it to my site, but I'm having a little trouble. I made this basic function:
function showPanel(id) {
var panel = $(".further_info." + id + "");
panel.slideToggle();
$(this).toggleClass("minus");
$(this).toggleClass("plus");
}

To give an example of its use:
<a class="panel_control plus" onclick="showPanel(0);"></a> <div class="further_info 0"></div>
The panel is displayed correctly, but the classname of the link isn't toggled between "plus" and "minus."

View 2 Replies View Related

Tabs Out Of Which Only One Is Open At A Time N When U Open Another Tab, One Out Of The Earlier Closed One Should Open

Oct 22, 2009

I need three tabs out of which only one is open at a time n when u open another tab, one out of the earlier closed one should open(preferably with mootools). And also the tab which is opened should come at the top of the page as well.

View 1 Replies View Related

Multiple Image Swaps On Same Page?

Apr 7, 2010

I'm trying to create a portfolio website in which I have multiple galleries showing different work on the same page . Each to work separately and change the default image on click. I have seen it work here: h[URL]

I was able to follow this: [URL] but then couldn't duplicate it.

View 1 Replies View Related

Rollovers Plus Onclick Image Swaps

Mar 25, 2007

I am not very well versed in js, but am attempting to figure this out. (Gotta start somewhere, right?) I want this to be unobtrusive js, if possible with no js specifics in the html (though additional or changes to classes/IDs would be fine). I've started with PPK's mouseover script, which is working just fine. To this, I want to add some onclick behaviors. Code:

View 1 Replies View Related

JQuery :: Make An Image Map Area Link To Another Page And Open A Specific According Section Via Slide Toggle?

Oct 31, 2011

How to make an image map link to another page AND open a specific accordion section?I guess I need a script that knows which area of the image map was clicked and not only navigate to page 2 but opens the section via slide toggle I need it too.Here is the the page with the image map (although image map version not upload yet so I have what will be uploaded below)[URL] ...and the page I need to navigate to based on the area of the image map clicked and also slidetoggling the div I need it [URL] Here is the image map:

<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<img src="/Img/Illustrations/kicktalkv2.jpg"" alt="Kick Talk" usemap="#kicktalk_map" />

[code]....

View 2 Replies View Related

Button On Click Swaps Background Image?

Jan 29, 2010

I have built a webpage that is all one template and the use of an iframe to change the content and not reload the page graphics every time. The way the page is laid out is a background image in the farthest back table behind another table of a background image that is transparent and over lays the bottom table image.

I want the menu buttons; with the existing rollover image for them alone, to change the bottom layer background image "on click". The only code sources i have found will swap images in the same table area and not to any image existing in the entire document.

View 6 Replies View Related

Adding Image Swaps To Page Up Once And Dont Want To Again?

May 6, 2010

i am going to add thumbnail images on the right side of this page[URL]...like found on this page[URL]... also i am going to give the arrows the ability to navigate through the images i asked for advice in a different forum and was told that the image swaps i have in ggallen.html should not be inline as it clogs up the page...makes sense. i would like to know the best way to add the image swap function, or whatever is best for the job, to the thumbnails. also i would guess there is a more concise way of achieving the navigational behavior for the arrows than making separate divs which are shown/ hid on click.

View 1 Replies View Related

Image Preloading - Show The Loading Sign Until The Main Image Loads Completely?

Nov 17, 2010

In one of my web page I want to show an image preloader. ie When I clicked on the small thumbnail in my web page then the main large image will load. My code looks something like this

$("#images li").click(function(){
var image=this.href;
$("#mainImage").attr('src',image);
});

I want to show the Loading sign until the main image loads completely.

View 1 Replies View Related

Remembering If A Div Is Open Or Closed?

Jul 5, 2009

The first thing I'd like to do is show/hide divs. What I'm going to do is pull out a few bits of PHP code out of the database and assign them all a class of show or hide. So, I need a script that can either open or close a div using a link using classes, probably with AJAX or DOM? The main thing is that it needs to be compatible with all major browsers. I've scoured the internet but can't find the most simple of scripts, and unfortunately my AJAX/DOM is terrible!

The second thing I need to do is remember which divs are open or closed. I was thinking of doing this with a database, and so I'll need to run a tiny PHP script to update the DB whenever a div is opened or closed. I assume this would be done using an onclick event? If so, I probably need to use GET to update the new class in the DB. Any ideas how I'd work out whether the div was open or not, and what function I'd use to run the PHP script?

Also, every time a page is loaded I'll get the 'show' or 'hide' options from the DB and assign them to the classes so the user still has their preferred tabs open.

View 14 Replies View Related

Sliding Open/Closed A Div?

Jul 20, 2010

I'm writing in Cold Fusion, but using a little java script to create the sliding effect. It's from a sliding open list function in another site, and I tried to just hack my current needs in there.

Code:

<script>
function DC_ShowHideMoreWebsites(id) {
if( document.getElementById( "contentsections2").style.display=="none" ) {
Effect.BlindDown( "contentsections2");

[code]....

View 1 Replies View Related

JQuery :: MIT-Licensed Solution To Image Swaps And Disjointed Rollovers?

Jan 19, 2011

Does anyone know of a good MIT-Licensed, or MIT-style image swap and disjointed rollover solution? All the ones I've seen are either GPL or personal-use only. The examples of img replacement scripts I've seen on stackoverflow are either only for personal use (I believe every example on the site is personal only, unless stated?), or too narrow in scope.

Any help would be great as the docs.jquery.com site has great demos on almost everything except how to swap images. I don't mind if its a block of code or a plugin, although preferrably something small and simple would be great.

It sounds like a big ask, but I thought I would ask as this place is super-friendly, unlike some of the other js libraries' forums' I've been to.

View 5 Replies View Related

JQuery :: Change Default $ Sign To Any Other Sign Like # Or @

Aug 18, 2010

how can I change default $ sign to any other sign like # or @ etc. The basic problem is when I try jquery with mootools js then mootools have also default $ sign so that bot are conflict to each other.

View 4 Replies View Related

Schedule Shop Open&closed Times?

Sep 30, 2010

I'm trying to get it to display a document write on the website if the time is as specified and the day is.These are the times and days i want to display for:

Monday: CLOSED
Tuesday: 9AM - 5:30PM

[code]....

At the moment this script only writes for Monday to Friday, 8:30am to 6pm (GMT0). But as you can see from my times above i want to be able to show two unique times for 2 days tues-thurs and friday (open) / sat-sun (close).i assume the else statement would be used for both monday and sunday as it writes close? how to go about this, tried changing the the t_day but had no success

Code JavaScript:

var d = new Date();
var t_hour = d.getUTCHours(); // getUTC for GMT0
var t_min = d.getUTCMinutes();
var t_day = d.getUTCDay();

[code]....

View 17 Replies View Related

Detecting When The Select Element's Dropdown List Is Open And/or Closed

Jul 20, 2005

I need to know when the select element's dropdown list is opened (as when the user clicks on the arrow or does ALT-downarrow from the keyboard). Similarly, I need to known when the dropdown list closes.

The closing of the dropdown list can happen without changing the dropdown, hence the onchange event is not a sure way to determine that the dropdown list closed.

Is this possible in Internet Explorer?

View 1 Replies View Related

JQuery :: Use A News Ticker Where The Lines Of News Fade In And Out?

Dec 1, 2010

I want to use a news ticker where the lines of news fade in and out. This is a piece of the script:

$(function(){
$('.Rotator ul li').hide();
$('.Rotator ul li:first').show(); Rotate();
});

[Code]...

View 1 Replies View Related

JQuery :: Toggle To Open One Div And Close All Other Open Divs?

Mar 22, 2010

I have multiple parent sections on the page. Each section has 3 child sections. Each parent toggles open and closed. and within each section there are buttons to toggle the children open and closed.

In the case of both the parents and their children, when a parent is toggled open I want the other parents to toggle closed . The same applies to the children of each parent. I want to close all the other open children when a child is toggled open. Rather like some accordions - which I can not use for this function. This way there is only one parent and one child open at any time

Because of the number of parents and children on the page I can not use Ids. All are designated by classes

View 5 Replies View Related

How To Create A BBC News Style News Ticker

Oct 27, 2005

Does anyone have guidance as to how BBC News (http://news.bbc.co.uk/) generates its news ticker "Latest" that appears at the top of the screen? I am interested in creating something like this for my site.

View 1 Replies View Related

Google News Api Search - Add Image{}?

Dec 16, 2010

I tried to make a easy google news search api. I know google news api search can show max 8 items per page, and 8 pages(total 64 items).

1.How to add `image{}`(I want to show the news image), I read the document in google official website, but not understand.

2.Can google news api search set a start page at page 3?(the default page is always show page 1)

3.Is google api search have a day limit? I saw the old version Google SOAP Search API just allow custom use 1000 times per day.

[Code]....

View 6 Replies View Related

JQuery :: Toggle - Hiding And Showing Alternative?

Jul 29, 2009

<script type="text/javascript">

Above is my JS. What I want to do is, click the button and have the vstar image hidden. Then when I click on the button again, the vstar appears, but now the flower is hidden. And clicking the button again, the vstar is hidden and the flower appears again, and so on...

<div>

View 7 Replies View Related

JQuery :: If Statement - When Click A Different Button To Open A Different Box - The "div#black" Should Stay Open And Not Toggle

Oct 17, 2010

Clicking on the menu buttons, a box with some info opens, ad under that, a div that makes the body of the site black. the problem is when i click a different button, to open a different box, the "div#black" should stay open and not toggle. i tried this

var black = $("div#black").toggle() ;
if (black == false { $("div#black).fadeIn("slow"); };

and this was the javascript for the button (with the toggle function, when i didn't use the if/else):

[Code]....

I don't know which is the correct way to write the if statement, i used easier ones but this one is to complex for me :D i think the main problem is the "var"

View 4 Replies View Related

JQuery :: Toggle Slide Open Hidden Div And Slide Close Open Divs At Same Time

Jun 26, 2010

Trying to learn the basics... Here is a script for three toggle buttons that each when clicked open their corresponding divs. Fine. Now how does one go about automatically closing an open div when clicking on a new 'toggler' that opens it's div? I see other posts about this very question, but I'm just not grasping the logic.

jQuery(document).ready(function($) {
$("#toggle1").click(function () {
$("#toggle1div").toggle("drop", {direction:"right"}, 500);
});
$("#toggle2").click(function () {

View 3 Replies View Related

Script Not Defined Error - Script To Slide Open And Closed A Div

Jul 26, 2010

Trying to use a small bit of script to slide open and closed a div.

Copied it from another page where I have it working just fine. Coding in coldfusion.

When clicked, nothing happens, and firebug pulls an error of DC_ShowDeptStaff is undefined.

Script is:

Call is:

View 5 Replies View Related

Open Another Site In New Window When Current Window Is Closed

Mar 26, 2006

I've seen sites that do this and was wondering if anybody could has the code to do it.

View 5 Replies View Related







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