JQuery :: Getting SRC From Clicked Image?

Sep 26, 2009

I've done this before but the whole idea of it is completely escaping me right now.Here's what I'm after.

$("img").click(function() {
var source = (the image's src)
});

View 2 Replies


ADVERTISEMENT

JQuery :: Use To Write To A Cookie To Tell It What Image Map Coord Was Clicked So The Correct So The Correct Div In The Clicked To Page Opens?

Dec 26, 2011

[URL]..Default.aspx I have both a carousel with images andalso animagemap(notnot published yet)with coords that when clicked i want to write to a cookie file which image or image map coordinate was clicked, so when they are hyperlinked to the next page the correct div opens based on first reading the cookie written to on the previous page. Anybody have a basic script for reading and writing to a cookie using jquery in this fashion?

View 2 Replies View Related

Image Swap & Count Apparently - Assign "add 1 When Clicked" Or "subtract 1 When Clicked" To Image Properties?

Nov 3, 2009

I have a very simple web page that is comprised of the same image over and over again. I have it to when you click on it, it swaps the image out and adds 1 to the counter. I need it to subtract 1 when you click it again.

<script type="text/javascript">
var namesVec = new Array("block.png", "block_hover.png");
var root='images/';
function swapImg(ima){
// divides the path
nr = ima.getAttribute('src').split('/');
// gets the last part of path, ie name
[Code]...

I mean, is there a way to assign "add 1 when clicked" or "subtract 1 when clicked" to image properties?

View 4 Replies View Related

ContentFlow - Change The ActiveItem Onclick To Just Bump It Over To The Next Image As If The Next Image Had Been Clicked

Jul 20, 2010

I am using ContentFlow from [URL] It is very well documented on their website. I got the whole thing working great on my site. What I don't know is how to change the ActiveItem onclick to just bump it over to the next image as if the next image had been clicked. As of right now it opens the image source in a self window. I don't want that. Can anyone give me a clue or maybe the whole answer on how to get it to click over to the next image? I believe the answer lies in the contentflow_src.js file.

View 6 Replies View Related

JQuery :: Rotate Image Or Div When Nav Is Clicked?

Sep 15, 2011

I've been searching for a way to rotate an image a div say 90 degrees when a link is clicked, but can not seem to get it to at all. Here is some code I'm trying at the moment amongst many others, using thejQuery Rotateplugin.

$('#canvas a').click(function() {
$('#circle').rotateLeft([angle=90]);
return false;
});

Edit: I can get it to kind of work with css3, although it doesn't animate, and it only rotates once. I would like to keep rotating each time a link is clicked.

$(document).ready(function(){
$('#canvas a').click(function(){
$('#circle img').css({"-webkit-transform" : "rotate(+45deg)"})
});
});

View 1 Replies View Related

JQuery :: Get An Image Map To Select Different Colours When Check Box Is Clicked?

Oct 21, 2011

There are a couple of things I'm having issues with and was hoping someone could point me in the right direction:1) When you click the check boxes, the image area is selected in red. I'd like to make it so when you click on mild=yellow, moderate=orange, severe=red. But as the colour is specified in default_options. How do I specify the colour for each check box separately?2) I'd like to move the text and check boxes to the top left of the image (I can get the image to float right, but can't seem to move the text (as an asp:panel) to the top left. It is still at the bottom, even after playing with the height etc.

View 5 Replies View Related

JQuery :: Toggle Function - Check Clicked One And Activate Next Image

May 20, 2009

I just started with Jquery:
<script type="text/javascript">
$(document).ready(function() {
$('#desperation input[type=image]').attr('disabled', true).fadeTo
("fast", 0.10);
$('#1').attr('disabled', false).fadeTo("fast", 0.70);
});
$('#1').toggle(
function () {
$('#1').click(function() {
$('#1').fadeTo("fast", 1.00).attr('checked', true);
$('#2').attr('disabled', false);
});},
function () {
$('#1').click(function() {
$('#1').fadeTo("fast", 0.70).attr('checked', false);
$('#2').attr('disabled', true);
});});
</script>
<div id="skill">
<form action="javascript:void(null);" method="post"
enctype="application/x-www-form-urlencoded" id="skillplanner"
name="skillplanner" >
<fieldset id="desperation"><legend>Freetrader Skills: Desperation</
legend>
<input type="image" src="files/icons/underdog.png" id="1"></input>
<input type="image" src="files/icons/dump_guns.png" id="2"></input>
<input type="image" src="files/icons/desperation_fire.png" id="3"></input>
<input type="image" src="files/icons/rum_ration.png" id="4"></input>
<input type="image" src="files/icons/hasty_fire.png" id="5"></input>
</fieldset></form></div>
The problem is with the toggle function. On click it should "check" clicked one and activate next one. Function doesnt work and I dont have a clue....

View 1 Replies View Related

Change An Image To Make A "pressable" Button When Select Areas Of An Image Map Are Clicked

Aug 20, 2011

I cannot get javascript to change an image to make a "pressable" button when select areas of an image map are clicked. I used index.html for testing purposes.

<body>
<img name="light" src="standard-light.png" width="60" height="180" border="0"
usemap="#lightmap"></a>
<map name="lightmap" >

[Code].....

View 1 Replies View Related

Three Images On The Left, Which, When Clicked, Change The Image On The Right Depending On Which Of The Left Images Was Clicked?

Nov 4, 2009

Im trying to build on a script that I found on the internet and modified to my needs.urrently there are three images on the left, which, when clicked, change the image on the right depending on which of the left images was clicked.Simply, when you click the whisky link on the left you see a bottle of wiskey on the right. Here is my script:

Code:
<SCRIPT TYPE="text/javascript">
function switchImg(i){

[code]....

View 3 Replies View Related

Disable Image When Clicked

Jan 14, 2010

I have my HTML page that has an image that submits the form.

Code:

But I want that when the user clicks on it the image or even the whole page becomes disabled or blurred. So the user cant click several times and print the same thing over and over.

View 2 Replies View Related

Cant Get Image To Change When Clicked?

Dec 17, 2010

im trying to get a image to change everytime its clicked, visa-versa. now it will change once, but thats it.

Code JavaScript:
<script type="text/javascript">
function toggle_visibility(id) {[code].....

View 7 Replies View Related

When The Image Is Clicked, It Will Act Jst Like A Link?

Jan 26, 2011

I have a question and I think javascript is the way to go...So here's what im thinkingI have an image of half a quys face. When the mouse goes over it, the image should expand to reveal the whole face, when the image is clicked, it will act jst like a link.

View 6 Replies View Related

Display Image When Clicked On Thumbnail?

Mar 24, 2010

I have a table with 2 colums, the left column is to preview image and the right column is for 4 small thumbnails. Iwant the preview picture to change when clicked on the individual thumbnail.

<table width="816" height="303" border="1">
<tr>
<td width="396" height="297"> </td>[code].....

View 8 Replies View Related

Change Image Of Link After Being Clicked On?

Sep 10, 2010

I read some other threads regarding how to toggle an image but I was having a hard time understanding. I have a bunch of images on my page, each links to a different lytebox presentation when you click on them. I'd like to have the clickable image change to another image to indicate to the user that they have viewed that presentation. I was hoping there was a way to switch to the new image permanently rather than just toggling back and forth between the two images if they click on the presentation more than once.

View 6 Replies View Related

Change Image After Link Has Been Clicked On?

Oct 23, 2010

i want to make a facebook fan page and iam using fbml to do this. i want to change the original image once a member likes the page.

View 1 Replies View Related

Image Change When A Link Is Clicked?

Feb 20, 2011

I have created a site http:[url].... and there is an image on the page which I want to change if a user clicks on a link. I am not sure if javascript is the best way to do this but thought i would give it a go. The image is currently set in the css so I think i will need to change this to use js?

View 1 Replies View Related

Get Each Image To FadeIn When The Thumbnail Is Clicked?

Jan 31, 2010

I'm woking on a simple image replacement thumbnail gallery using jQuery and am trying to get each image to fadeIn when the thumbnail is clicked. My (stripped down) code looks like this so far:

<head>
<script>
$(document).ready(function(){
$(".thumbs a").click(function(){

[code]....

View 1 Replies View Related

Need To Change Src Attr Of A Destination Image From One This Clicked On

Sep 5, 2007

Inside of an img tag I have an onclick that fires a function. The
function is supposed to change the src of a larger image elsewhere on
the page. Think: click the thumbnail to see it at the enlarged_image
that is on the page.

I tried this function but it doesnt work =/

function doit(){
var node = this;
var nodesrc = node.getAttribute("src");
dest_img.setAttribute("src", nodesrc);
}

I dont think 'this' is doing what I want it to, plus I get the error
that node.getAttribute() is not a function.

View 2 Replies View Related

How To Make A Link Image Change When Clicked?

May 4, 2003

I am working on a explorer like tree in a php script. I have the standard + - in a box pics. How to I have the + pic change to the - pic when clicked. Also, how do I get it to change back when another + pic is chosen?

View 16 Replies View Related

Show Embedded Video When Image Is Clicked

Feb 23, 2010

Example:[url]

When you visit that page, all that is loaded is and image with a "Click to play" button. Then when you click on the image, all the flash elements are loaded in place of the image. How did they do this?

I know you can do this with an external html file but I want to do it without an external html page so I can integrate it into wordpress.

View 3 Replies View Related

JQuery :: Hide Advertisement "image" For X Period Of Time After Being Clicked On It?

Oct 1, 2011

I'm displaying ads on my website, but I would like to hide the script for, let's say 12 hours, after it has been clicked on it. I somehow managed to create something, but it's still not what I want. On refresh, the image is back. I know that i have to use jquery cookies, but i'm really new to jquery so I've got no clue how to set up the cookies into that script.

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<div class="news">[ code]....

View 2 Replies View Related

Move An Image Down 20px Each Time The Button Is Clicked

Sep 14, 2010

I am trying to move an image down 20px each time the button is clicked, but I can only get it to move down once. I see what I am doing wrong, but I'm not sure how to fix it. I don't know how to store the updated position of the image in a variable.

View 5 Replies View Related

Main Gallery Image To Fade In When Thumbnail Clicked?

Sep 10, 2009

I have a gallery consisting of thumbnail images and a big image...pretty standard stuff. Anyway i'd like the big image to fade in when a thumbnail image is clicked and can't find any tutorials on how to do this. I have found ready made galleries using jquery but thought there might be something i could do with my existing html/css. I'm new to javascript and wonder if someone can point me in the right direction? Is this more complicated than it appears to be?

View 1 Replies View Related

Make Cursor Go To The First Line Of The Form After Image Clicked?

Feb 2, 2011

Treat me like a novice on this question please. I may need to have someone do it for me if it's complicated.

What code would I need to insert in order to make the cursor go to the first line of a form (text box) when someone clicks on an image 410 x 162 px? I'm trying to accomplish this on the home page of e-workerscomp .net. There's a picture of the U.S. It needs to go to the first line of the form when clicked.

There's no need to make each individual state take the cursor somewhere.

View 2 Replies View Related

JQuery :: Make An Image Label That When Clicked Will Change From One Label To Another

May 3, 2011

How can I make an image label that when I clicked will change from one label to another.

Let say I have index.html where my label is displayed. Then I have label01.jpg to label20.jpg stored on label sub folder.

What I want is to be able to change my label one at a time from label01.jpg to label20.jpg everytime i click the label. then go back to label01.jpg after label20.jpg

For illustration purpose, see image below. I want the label to change every click until I got the label right for the video screen. I have 20 video screen in one page and I need to change the labels depending on the video.

Actually a more preferred solution is for the script to cycle through all the pictures on my label folder so that if I have new labels I only need to dump it in the folder and it will become available.

View 11 Replies View Related

Photo Gallery - Show Full Screen Image When Thumbnail Is Clicked?

Dec 16, 2009

I have a page, which is actually a photo gallery with a table having 3 rows. First row shows the full screen size pic. Second row displays the Caption of that image and third row shows thumbnail view of six different images and the previous and next button.this is the sample layout:

<table>
<tr>
<td colspan=8>

[code]...

My requirement is whenever the user click on the thumbnail view, which is in the 3rd row, the corresponding full screen size pic should open in 1st row of the table.As my photo gallery should be having more than 6 pics, lets take 20 pics, I want to show only 6 thumbnails in 3rd row at a time. Whenever user press "Next" button the 3rd row having 6 thumbnails should show other 6 thumbnails and previous button should show previous 6 thumbnails.

View 10 Replies View Related







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