0
votes
1answer
21 views

Modifying src attr using replace

Hello i made a code where i get the last part of the src data and replace _t for empty space like this. // Get the current image number var current = $(next.index("img")); var ...
1
vote
4answers
202 views

Swap image src with jquery

I have one big image and small thumbs, i am trying to swap their src with each other. Here i am changing thumb img in bottleWrapper img, but i want to swap their src. Pls help! HTML <div ...
0
votes
4answers
59 views

jquery possible to grab src from a bunch of images

I have some HTML that I don't have control off. The basic layout is as follows... <div class="container"> <div class="img-field"> <img src="/path/to/img.jpg" /> ...
0
votes
1answer
119 views

Change src attribut with jquery makes container smaller for 1 second… why?

I'm trying to create a little slideshow for a mobile website. This is the html: <div id="gallery"> <a id="prev" data-icon="arrow-l" data-iconpos="left" data-role="button" ...
4
votes
3answers
346 views

Change images using Jquery (Circular motion)

Good day guys, I've a DOM like this <div class="Gallery"> <div class="GaleryLeftPanel"> <img id="img1" src="/Content/Public/images/1.png" style="z-index: 100" width="141" ...
0
votes
0answers
74 views

Change img SRC on dropdown selected option

Probably an easy one, but I'm not sure how to do it right now, as i'm currently looking for tutorials already.. So I hope someone wants to help me out. http://jsfiddle.net/blackvibes/wFCU7/1/ I've ...
1
vote
2answers
135 views

Img attr src will not change

Heres the situation i am able to show on hover the src as being chenged but the image on the screen itself doesnt actualy change. any help would be a great help. $('.hoverImgs').hover( ...
0
votes
1answer
1k views

replacing img src attribute w/ jQuery not working

I'm trying to create simple slideshow where if I click the image it will turn into the next image. So far I have four images in a subfolder, named 1-4 (ex: 1.jpg, 2.jpg, 3.jpg, 4.jpg). I've set up a ...
0
votes
1answer
95 views

What is wrong with my jQuery src changing code?

I am trying to change an images's src when you hover over it. This was my attempt, however it is not working: HTML: <img src="images/work.png" id="work"/> jQuery: ...
0
votes
1answer
260 views

html5 video source not changing in safari

I am trying to change the source of a video in html5 but in Safari it does not change it the way I am trying to do it: Here is my JQUERY: $(".video").click(function (){ var str = ...
1
vote
1answer
3k views

if $('img').attr(“src”, “”)

I'm trying to use jQuery to edit the SRC of an image if it's blank. Here's my current code: <script type="text/javascript"> $(document).ready(function() { var $this = $(this), ...
2
votes
2answers
2k views

jquery get image width after src change

my jquery code: img[i]='img-src'; $("#popimage1").attr("src",img[i]); alert($("#popimage1").width()); //doesn't give the width of the current image, but it gives for the previous, and for ...
0
votes
3answers
181 views

Jquery attr select

I am parsing an xml which looks like this <title>abc</title> <summary>abc</summary> <content type='application/atom+xml' src='abc'/> <link rel='alternate' ...
0
votes
1answer
70 views

change image on id after succes:

I have this piece of code, but can't seem to get it working. success: function(){ $('.like').find('.like'+like_id).attr("src", "/img/icons/checked.gif"); ...etc. .like is the class for all the ...
0
votes
5answers
126 views

Can't I assign values from a $().attr() in the same line?

I'm trying to do this: $('#smallpictureone').click(function () { $("mainproductpicture").attr("src") = $("smallpictureone").attr("src"); }); #mainproductpicture is the bigger picture on my ...
0
votes
2answers
693 views

Setting multiple attributes with .attr()

I'm having a function here: EDIT : gave you full code here! $(".thumbnail").live("click", function(){ $('#imageBig').find("#pictureContainer").remove(); $('#loadingImage').fadeIn(); ...
0
votes
4answers
592 views

How can I get img src and text from distant elements using JQuery?

Could you please lend a hand as I am having some trouble getting the text of a heading and the source of an image element in order to create a list of the item clicked. But I will explain better with ...
7
votes
2answers
37k views

jQuery attr() change img src

I'm making some Rocket launching effect by jQuery. When I click on Rocket, it'll change by another rocket image, and launches up. When I click "Reset" link, Rocket must reset starting location and ...
1
vote
2answers
2k views

Using jQuery each to replace image source

I have the following issue. On load I want to use each to go through all the divs with the ".image" class, get the source of the image in that div and replace the source of the corresponding list ...
1
vote
2answers
1k views

How to target image with certain src path with JQuery

How would I go about targeting the below img with the src file? <img src="left1.gif" alt="" /> $('img[src=left1.gif]').hide(); doesn't work