JQuery :: Swapping A Graphic - Gray Ver ?
Jul 9, 2011
I have a graphic that is the gray ver of the one i want to swap in it looks like this
The base_url() is part of CodeIgnighter it puts in the base url so i can access the image directory
I have an onload comand in my body to refresh this ever 10 seconds what i need to know is how to swap out the above file for friend_request.png witch is in the same dir
This is the loaded graphic and this is what i want it to look like if my script returns a friend request just to give you and idea of what i'm doing.
View 4 Replies
ADVERTISEMENT
Sep 2, 2011
I have been trying to get better at my javascript as of late and there is this one particular color fading technique I have found that I am having trouble dissecting. The following code appears to be how they are making a rollover go from a dark gray to a subtle light gray with a nice fade but I can't exactly tell whats going on from the code. Is it just telling it to add a rgb point in so many seconds?
colorInit=
true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],0),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],0),255),0)+")"}});
View 1 Replies
View Related
May 16, 2010
im new to Jquery and would like to know how to make the icones go from gray to colour on the below website and also where i can get the scrips/files to do this
View 2 Replies
View Related
Aug 19, 2011
This seems like a pretty common task, so I feel optimistic that someone has already developed it. However, I'm not sure how to put it into Google so I thought I would ask for recommendations here.The situation is a billing/shipping address form, with a checkbox for "billing same as shipping." If the user ticks this checkbox, I want the billing section of the form to "gray out" - or better yet, to pull the values from the shipping section and gray out. This will enhance the user experience by avoiding confusion as to whether or not the billin part of the form still needs to be filled out.
View 4 Replies
View Related
Feb 22, 2011
I'm working on implementing watermark in datepicker text field (JQuery V1.8.9). I have a datepicker field with watermark set (dd/mm/yyyy). Watermark text displaying in gray color. When I select a date, the text field still having the gray color instead of changing to black color. but, when i key in the date and focus out, it's working fine. Also, this is working fine in Chrome but not with Firefox. I'm not sure the exact cause...
View 3 Replies
View Related
Sep 11, 2011
Is it possible to use a graphic or an image, such as an arrow, instead of the text for prev next?
I've reviewed all the demos and searched the forum here. I don't see any reference to this anywhere.
View 4 Replies
View Related
Jul 14, 2009
I know very little about jQuery. I am trying to design a graphic menu bar that is capable of displaying each button in 4 modes: up (neutral), hover, down (mouse down), and selected. After some research, I was able to "come up" (by cutting and pasting and burning up a couple of neurons) with the code below. It works well enough but I'm sure it could be written a lot better. What I really would like to do is to change whatever button is "down" to go back "up" once another button is pushed, changing the img src, or by whatever method is more efficient.
<script src="js/jquery-1.3.2.js" type="text/javascript"
charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() { // image rollover
$(".topmenu img").hover(function() {
this.src = this.src.replace("-up","-hover");
}, function() {
this.src = this.src.replace("-hover","-up"); .....
View 3 Replies
View Related
Sep 20, 2011
I am trying to dynamically close a div overlay. I have an x that dynamically appears, then closes when the user presses it. I want the overlay to also close when the user clicks the close button. So far I've tried to bind the click event to my button but its not working.
CSS:
div#testbutton{}
HTML
<a href="#" id="testbutton"><img id="testbutton" class="close" src="/images/common/button-close.gif"/></a>
[Code]......
View 1 Replies
View Related
Sep 8, 2010
I have a button on my site, which when clicked calls an ajax function. What I want to do though, is append a loading graphic for just 2 seconds inside the button such that it looks as if the website is 'busy' saving when the button is clicked. This is obviously just for user feedback as the 'save' is done instantly - it's just for user feedback to make the user confident that the save button has worked. To do this, I'm trying to append a loading image to the save button, delay for 2 seconds, then remove the image, but it doesn't seem to work.
I have this HTML:
<p><a href="#" title="" class="save">Save</a></p>
And this jQuery:
$
(
[Code]....
View 1 Replies
View Related
Jun 19, 2010
Here's what I'm trying to do: When someone clicks on plain text with div of "hdrlink", then div of "slideshow" will close up using toggle. At the same time also need div of "headerNav" to move up 300px. When the user clicks "hdrlink" again, then "slideshow" reappears and "headerNav" move back down 300px (starting position)Here's the script:
<script type="text/javascript">
$j('#hdrlink').click(function(){
$j('#slideshow').toggle(800),
[code]....
View 10 Replies
View Related
Jun 9, 2011
i'm only looking for someone that will want to point me in the right direction...and i'll try to do my best on my own ...we want to offer personalized tshirts...so we do need a way for the customer to choose size, color, subject and text and check all this in real time...someone that is doing something that we want is
http://www.vistaprint.com/embroidered-activewear.aspx?xnav=top#in your opininion,
View 4 Replies
View Related
Jul 17, 2010
I want the code for a button effect. The button is for a graphic button, on clicking it it changes its graphic to an ('on' image), plays a sound effect, then changes graphic to the first image('off' image), then it goes to a link.
Files would be
Images/offbutton.jpg
Images/onbutton.jpg
sound/buttonclick.wav
View 5 Replies
View Related
Mar 25, 2009
I am using Javascript on an upload page to hide the form and show an animated progress graphic when the user clicks Submit. The problem is that the graphic, which is initially hidden, does not animate when displayed in Internet Explorer. (works great in Firefox, of course)
I searched Google and found a couple postings describing this problem, but I couldn't seem to find a solution.
Does anyone know how to fix this?
View 4 Replies
View Related
Sep 26, 2010
I was wondering if there is a method to swap the contents of a div with jquery? The event is triggered when internal elements are clicked. Say and image and a link within the div, and also to be able to jump back to the same div with the same events.
View 3 Replies
View Related
Jun 3, 2011
This script fades a web pages background when you mouseover a graphic.The problem I'm having is it goes from white to black and I need it to go from black to white. I was able to reverse it like I wanted but the page still initially starts off white instead of black. Setting the pages background to black doesn't fix the problem either.
<HTML>
<HEAD>
<script language="JavaScript">[code]..........
View 2 Replies
View Related
Jan 23, 2011
I have a simple navigation bar using an ul with images.
I have the following script that swaps out the images on mouseover and mouseout to create "hover" effect.
The issue is when I try to set the src attribute of the image that has been clicked the image does not change. The first part of the click event is working and resets the src of all the images as expected, but the second part that sets the src for the image clicked does not either run or runs before the reset.
View 3 Replies
View Related
Jul 29, 2010
I'm trying to do a quick and dirty jQuery toggle swap, I'm swapping the div ok, but I can't seem to work out how to swap back to the original.
[Code]...
View 1 Replies
View Related
Jul 8, 2011
What I would like to do is enable swapping between the black images? I would like to drag and drop to another image and that image will fill up the dragged earlier image position?
View 1 Replies
View Related
Jan 16, 2008
i have anerror when i try to swap background images, it works fine in firefox, safari, opera but in IE7, i get this :
[Code]...
View 3 Replies
View Related
Jan 23, 2011
I've run into a problem with swapping images for site navigation.The "hover" part works just fine, but the problem lies within the click part. When the user clicks the first thing that happens is to reset all of the images for all of the links, and then set the hover image for the link that was clicked. However it seems that after resetting all of the images 'src' attributes, the code for setting the link that was clicked either doesn't execute, or executes before the reset.
View 1 Replies
View Related
Aug 1, 2011
I have some set of div elements as follows,
<div class="parentCell_1">
<div class="children"></div>
<div class="children"></div>
[code]....
View 4 Replies
View Related
Jul 8, 2011
What I would like to do is enable swapping between the black images? I would like to drag and drop to another image and that image will fill up the dragged earlier image position?
View 2 Replies
View Related
Dec 1, 2010
I am trying to modify a jQuery login effect someone wrote for me who is no longer available. I am just starting to learn JS and jQuery so would really appreciate some help if anyone has a couple of minutes. If you click the close button a login button will appear. The effect is working how I want it to but I need the button to load first instead of the form.
View 5 Replies
View Related
Jun 21, 2010
I am trying to create a menu that would look and act like this image illustrates: [URL] Essentially the three boxes slide down when rolled over and menu items appear in the portion that has slid down.So far, I have figured out how to make an image slide using jQuery: [URL]
View 2 Replies
View Related
Mar 10, 2004
how do you swap to cell elements? if i had a table of 1 row and 2 cells with a image in each cell how do i swap the images using DOM based javascript
View 2 Replies
View Related
Jul 9, 2009
I've seen some sites going what I want to achieve, but I cant remember the names of them.
I have an iframe on a page ( its a local page ), when a user submits this page, I want to display a "busy graphic" while waiting for the results, does anybody have a link to such and example?
View 2 Replies
View Related