Hide All Images, And Show Certain Ones ONCLICk?

Jan 30, 2010

I'm new to the forums, so if i post anything wrong let me know. I'm trying to use links to hide all the images, and show just ones from a certain category. I've used the img name attribute to group them and tried to do a function that shows only one img.

<script language="javascript">
function showone(x) {
document.getElementByName('a').style.display='none';
document.getElementByName('b').style.display='none';
document.getElementByName('c').style.display='none';

[Code]...

except the links don't work like they should, and I can't figure out why. I'm an idiot with javascript, so if feel free to make fun of me, and if anyone knows how to get this simple function to work,

View 9 Replies


ADVERTISEMENT

Hide A Div And Show Another Onclick?

Aug 10, 2009

Alright, me having a very basic knowledge of js I'm looking for some help with(what I think should be) a simple hide/show of a set of divs. I've broken down the ccs/html I'm looking at on a test page here...

The js I have in the page had been what I tried to modify from a simple hide/show, but it's not doing what I want it to do (obviously). The goal is when you click on link 3, I want white3 to hide and all the other white divs to show, when you click on link 3, white 2 will hide and the other white divs will show, and so on. So basically it's revealing what div you click to. A lot of what I've found have been just toggles, but I'm not very confident in my ability to adjust code.

View 7 Replies View Related

Onclick Show One Hide The Rest?

Nov 12, 2010

i have php code that shows a list of colored boxes and when you click one it changes the color of a div... this works fine as i have used a changecss function... i have these colors in a database with their values and specific color names... what i am trying to do is when a color is clicked it will change the div and also print the color name....i have made a php loop to print all the color names and i have the display as none... how can i add to the onclick function that changes the color to also put the display of the certain color name to "block" and then if you select another color it hides that one and shows the new color.

View 8 Replies View Related

Onclick - Toggle To Show/ Re Hide The Div

Mar 3, 2009

Im trying to hide a div ( quick reply box) like IPB using this code it's hidden but the actual link to toggle it isn't a live link for some reason any idea's what im doing wrong would be good.

This is what i am trying to hide

Im not sure how i get this to toggle to show/ re hide the div.


<div id="myClickyDiv" onclick="swapMyToggledDiv();">Toggle</div>

View 3 Replies View Related

Hide/show Div Background Image Onclick?

May 27, 2010

I want a background image of a tick to appear in each coloured box in my attached image onclick. When another coloured box is clicked I want the image to show in that one and then hidden in the previous one clicked. There should be no ticks shown on page load.I'm clueless as to how to do this.Here's my code for the image attached:

<div class="colour-picker">
<div class="tick-off" id="red" onclick="changeclass();">
</div>

[code]....

View 1 Replies View Related

Show / Hide DIV OnClick No Longer Works

Feb 8, 2011

I have a page where an alternate address area is kept hidden via JavaScript and CSS divs. If you click that you want to use an alternate billing address, two divs are expanded. One with the form fields for entering in your alternate address, the other area has further info about why we need that alternate address. (Code is below). This works PERFECTLY for my needs....however, if you reload the page, the "show" button remains selected and OFF=ON and ON=OFF if you get my meaning...so when you click the radio that should be hiding the divs, it shows them and vice versa. Additionally if there is an error in the form and the page reloads to display the error, only the billing address area stays expanded (its inside the <form> tags), the text area next to it goes back to being hidden, and the show/hide OnClick no longer works. Ideally, I'd like the two to maintain the same state (i.e. if both we're shown, both stay shown).

CODE (trimmed down of course):
Code:
<head>
<style type="text/css" media="all">
.invis { visibility: hidden; display: none; }
.vis { visibility: visible; display: inline; }
</style>
<script language="javascript" type="text/javascript">
var c = 'invis';
var ids = new Array('id1', 'id2'); // IDs of your <div>s
function doSwap() {
c == 'vis' ? c = 'invis' : c = 'vis';
for (var i=0; i<ids.length; i++) {
document.getElementById(ids[i]).className = c;
}}
</script>
</head>
<body>

<div id="id1" class="invis">This is all just plain text that appears when the NO radio is clicked but disappears on reload</div>
<form>
<table>
<tr>
<td>
<input type="Radio" name=" " value="hide" onClick="doSwap()" id=""> YES
<input type="Radio" name=" " value="show" onClick="doSwap()" id=""> NO
</td>
</tr>
<tr id="id2" class="invis">
<td>extra address entry stuff that appears when the NO radio and that stays on page after reload</td>
</tr>
</table>
</body>

View 2 Replies View Related

Table Row OnClick To Show / Hide Embedded DIV

Aug 12, 2011

I have a php page that essentially builds a pay report in the form of a table. The php side builds the page properly, though it took some time to get the table rows onmouseover and onmouseout functions to work for row highlighting. Now the issue is the table row's onclick function.

Here is what the outputed html looks like.
<head><script type="text/javascript" language="javascript">
function HideShowDiv(divID){
if (document.getElementById(divID).style.display == "none"){
document.getElementById(divID).style.display = "block");
document.writeln("show "+divID);
}else{
document.getElementById(divID).style.display = "none";
document.writeln("hide "+divID);
}} .....

<tr>
<td colspan="2" align="right">Some Association of Baseball</td>
<td align="right">$24</td>
<td align="center"></td>
</tr>
</table>
</div> <!-- Closes the main body div container -->

In my javascript function, the writeln() calls are for testing to see if the even is even firing. but nothing gets written to the page. Basically I want the row with the users name to be clickable which will show the details in the hidden div associated with the user.

View 5 Replies View Related

Toggle Link Text And Show / Hide ID Onclick

Apr 20, 2010

I am trying to create a Link that changes its currently displayed text and also toggles the css.display property from inline to hidden. I'm sure there are solution outs there btu I have not been able to find one that does both functions with one click properly and is also easy to implement for people not as familiar with html and javascript. Obviously I am trying to create a show more, show less type link. currently this often shared code works fine to change the current state of the target ID's css.display from none to inline. My end goal is to be able to not only toggle the display of the LONG1 div but to also change the innerhtml of 'short1' from "Show More" to "Show Less".I am still learning about JS so Im really rough around the edges. I tried some different techniques btu I dont ahev them posted on my work pc.

View 14 Replies View Related

Show / Hide Based On Database Field Value - NOT Onclick

Oct 30, 2009

I have created a user form in which visitors can fill in sections, some of which are hidden or displayed using the onclick to trigger a DIV to display or hide then submit the results to a database using ASP. All works fine with that, however... I have created another page which retrieves the results for an individual's form submission, and I want to hide the sections that were not completed (hidden when submitted). How can I get my page to hide or show DIVs, depending on the value retrieved from a particular field within the database? i.e. if Question1Response="A", show Div ID="A Section" If Question1Response="B", show Div ID="B Section" etc.

View 4 Replies View Related

JQuery :: Show/hide Images Via Button Clicks?

May 5, 2011

I'm completely new to jquery. I've been reading through the tutorials and documentation, but I can't figure out the best way to make this work. I want the User to see one box that changes colors by pressing the proper button.

[Code]...

View 10 Replies View Related

JQuery :: Hide/show Table Rows With An Onclick Event?

Jan 7, 2010

I want to hide/show table rows with an onclick event. Here are the relevant snippets of code I have:

Script:
$(document).ready(function() {
$("#plan1-title").click(function() {
$("#plan1").toggle();

[code]....

It works in all browsers (Firefox, Safari, Chrome, and Opera), however not a single version of IE 6-8 will toggle the table row.

View 2 Replies View Related

JQuery :: Show / Hide Images Based On Checkbox State?

Apr 13, 2010

What you can see is that I have a bunch of images which form a chart, each of the images has multiple classes.I want to write a function which when called fades in/out images dependant on whether all related checkboxes are checked or not.Checkboxes are related to the images by id on the checkbox and class on the image, as I'm sure you can see. I will be calling this method each time a checkbox is checked.

View 2 Replies View Related

JQuery :: Toggle Function - Hide/show Table When Hide/show Button Is Pressed

Sep 12, 2011

I am trying to hide/show table when hide/show button is pressed

Problem: The code works fine when I remove 'slow' from line 10. But with 'slow' in line 10 content of toggleButton doesnt change from Hide to Show when pressed.

Code:

View 1 Replies View Related

Use An Onclick Event To Show The Hidden Div, It Just Wont Show?

Nov 23, 2009

im trying to hide a div on page load,ive used this.

<script type="text/javascript">
function hideDiv(){
document.getElementById('sidebar').style.display = "none";[code].....

and this in the body tag

<body onload="javascript:hideDiv()">

it works fine hiding the div named sidebar, problem comes when i try to then use an Onclick event to show the hidden div, it just wont show.can this be done?

View 2 Replies View Related

Show / Hide Won't Show In Nested List

Jan 22, 2009

I am having problems, basically I have a set of nested lists I need to show and hide

Code:
<ul id="smenu3"><ul id="smenu4">
<li>stuff here..</li>
<li>stuff here..</li>
<li>stuff here..</li>
</ul><ul id="smenu5">
[Code]...

I always want "smenu3" to show with "smenu4" and "smenu5" collapsed... When the user clicks the link, it calls a javascript function to show "smenu4" like so...

[Code]...

View 7 Replies View Related

OnClick Event For Images

Dec 26, 2006

I am trying to set the onclick event for images through a function, but the
event is triggered as soon the page loads, then will not work when the image
is clicked. Can anyone suggest what is wrong?
It is happening in both IE6 and Firefox
---------------------------------------------------------------------------
window.onload = fnNewWindowLinks;

function fnNewWindowLinks() {
for (var intLinks=0; intLinks<document.links.length; intLinks++) {
if (document.links[intLinks].className == "picture") {
document.links[intLinks].onClick = alert("Clicked");
}
}
}
---------------------------------------------------------------------------

View 5 Replies View Related

Assaisning Onclick For Images?

Feb 13, 2010

I am currently building a memory game for an assignment. I guess you can figure out what it's supposed to do. Anyway i am having problems assigning onclick events for my images, as the way i've learned b4 doesn't work. The issue is this code snippet, everything else works or is in a working state at least;

[Code]...

View 1 Replies View Related

Onclick Swaps 2 Images?

Apr 22, 2011

I have been spending all morning trying different solutions. I'm trying to change two images ('bigpic' and 'desc') when someone clicks on a respective thumbnail. I have the swap working for 'bigpic' but cannot add the swap for 'desc' and get it to work. I used the Insert Image Object from Dreamweaver since I am not a Javascript coder and I've been looking through books and online and cannot find the answer. Here is the javascript code I have in the head:

<script type="text/javascript">
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>

[Code]...

View 3 Replies View Related

Hide Link And Div OnClick?

Mar 24, 2010

I am having trouble trying to hide a link and a div when I click on a link. Here is what I tried to do first.

I have two links and one div box. When I click the first link I want to show the div box and another link (hide) then at the same time I want to hide the link that I clicked.

Showdiv HideDiv(initially hidden)
--------------div box------
| initially hidden |
| |

[Code]....

If it is not possible to do with link (<a> tags) can I achieve this with an image? Lets say I just change the image onclick and show a div box and then click the same (now changed image) and hide the box.

View 5 Replies View Related

Double Onclick + Event Images?

Jan 19, 2010

http:[url]............1) In the events.js-file where you write the longer text part for the tooltip, is it possible to include images somehow for each event within the end of the tooltip?I thinkt that would make the activities look a bit more interesting to read about.

2) When I click on any yellow event in the calendar, it changes the text to the right. Fine with that. But is it possible to use onclick as a double function?So that when I click on "START" (bottom left of the calendar) after having pressed any yellow event, it will not only take me back to the right month but also take me back to the start text?

View 1 Replies View Related

UnAble To Hide Images?

Mar 23, 2011

In this code i used 2 coloums.in 1st coloum i used 3 buttons(images). so when i move mouse on any particular button on leftside it should display respective image on right side.Even if we move mouse over right side image it must show same image. But here when i move mouse over second image it shows respective image on right side, but igf i place cursor on that image, it displays 1st,2nd image.if i do samething for 3rd image it displays 1st,2nd,3rd image. so I am facing problem to hide images in rightside for 2nd, 3rd part

<!--head part-->
<script type="text/javascript" language="Javascript">
function HideDIV(d)
[code]....

View 2 Replies View Related

How To Hide Status For All Onclick Events?

Nov 20, 2002

Is it possible to set the browser default to hidestatus for all onclick events?

View 3 Replies View Related

Toggling/Switching Between Multiple Images With OnClick

Apr 8, 2009

I have created a long list of items. For each item, there is 1 image. In my case, I use the same image each time.

I would like to use JS to allow users to check an item by clicking on it. Please note, I am not using radio buttons or any other forms.

This is my JS function:

It is triggered using this:

It works for each image. It switches to 2.png when a user clicks on each instance of that image. But how do you make sure it switches back to 1.png on the next click, and so on, effectively creating a switch for multiple instances of the same image?

View 2 Replies View Related

OnClick - HTML Drop Down Box To Work With Images Instead?

Apr 12, 2010

HTML drop down box to work with images instead?

[Code]....

What i want is just 3 images (representing the currency flag) I have tried just simply using the onclick="" but im guessing i will need to create a JS function?

View 9 Replies View Related

OnClick Slideshow - Array Of Images Not Sliding

Feb 17, 2011

I have an image on my page. And I want, when someone clicks on it, it must cycle through an array of images. However, I can't seem to get it to work.

HTML Code:
<div id="slide">
<h3>Some of my work</h3>
<img src="images/slide/slide1.jpg" width="650" height="300" alt="Slide" id="slideShow" onclick="processNext();" />
</div>

Code:
window.onload = initLinks();
window.onload = processNext();
var slidePics = new Array("images/slide/slide1.jpg","images/slide/slide2.jpg","images/slide/slide3.jpg","images/slide/slide4.jpg","images/slide/slide5.jpg","images/slide/slide6.jpg");
var thisPic = 0;
function initLinks(){
document.getElementById("slideShow").onclick = processNext;
}

function processNext(){
thisPic++;
if(thisPic == slidePix.length){
thisPic = 0;
}
document.getElementById("slideShow").src = slidePix[thisPic];
return false;
}

View 5 Replies View Related

JQuery :: How To Hide Images In Table

Oct 23, 2011

This is a part of education test. I have a div, with images like this:
<div>
<img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);"><br>
<img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);"><br>
<img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);"><img src="..." onmouseover="zoom(this);">
</div>

There can be more images in a "table" like 4x4 or 6x4.. When I move mouse cursor over one of images I would need to hide all previous images and all next images, relative to image that fired the event. This is my question how to do it. Next step is to zoom the image with .addClass("zoom") and on onmouseout to removeClass("zoom") (no problem with this). And last step is to make all images visible if mouse is out of images. I want to keep the DOM structure as it is, for compatibility with other JS code.

View 8 Replies View Related







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