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 ...
0
votes
1answer
26 views

replacing a variable for an other variable after “submit” is clicked

here is my index.php: <script> function changecolor(img) { var images = document.getElementsByTagName("img"); for(var i=0,j=images.length; i<j; i++) { ...
0
votes
2answers
38 views

set new image source permanently

I'm trying to randomly replace images in a grid. The new images flash briefly (in Chrome) every time the function is triggered, but then the old images reappear. I know there's a very simple ...
0
votes
0answers
10 views

Change part of a src of an iframe inside a div

I want to replace part of the src of an iframe that is inside some divs on the webpage. I've searched the web and i came up with this. I tried to select the iframe by it's class which is photoset. ...
0
votes
0answers
25 views

How to replace src of api with session variable

I have an api like below. "iframe src="http://api.virool.com/offers/wall/memberid?suid=[USER_ID]" scrolling="no" height="100%" width="100%" Now I want to replace [USER_ID] with the user id of the ...
0
votes
2answers
147 views

jQuery - Replacing image sources dynamically for mouse events

I've got a sample navigation list with images as buttons. There are two additional states for the buttons for when the user hovers over the button and when the mouse is clicked. Each button has the ...
0
votes
1answer
145 views

Replace part of img path with regex in jquery

I want to look through the entire page on a site and replace relative img paths with "/". For example: $("body img").attr("src",function(){ return this.src.replace("uploads","/uploads"); ...
0
votes
1answer
108 views

Replace SRCs of Two Images with One Click

I am trying to do something that is slightly more complicated than I am used to, and I was hoping you guys could help me with this one... The website I am developing requires this type of Psudo ...
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
66 views

Adding attributes to custom HTML key [img]/path/to/image.jpg[/img]

I have an online text editor, very well made however it does not currently support images. I have this at the moment and don't feel it to be a very good way of doing it. var = txt = "some text here ...
1
vote
2answers
3k views

Dynamically replace image source with jQuery

I'm trying to replace the default Yelp star rating image for businesses with one of my own. To do so I need to find the corresponding image source for each of the possible 5 images that could have ...
0
votes
1answer
176 views

mySQL Query to Extract/Replace src parameter from <img> tag in field data

I have a situation where I'm upgraded a CMS based website that has had some major changes over the years on how to handle certain field types. On in particular is images. Originally an tag in a text ...
2
votes
2answers
144 views

Replace the end of a File Name (SRC)

i'm having a bit of a problem here. I found this script on the web, and changed it around a bit for my needs. This script shows a preview of the image following the mouse onmouseover. Originally, ...
0
votes
2answers
580 views

Jquery replace with regex: replacing an attribute in SRC with another attribute

I'm using Google Static Maps, which loads an image map: <img src="http://maps.google.com/maps/api/....&someparameter&someparameter&scale=1"> Notice the "scale=1" parameter at the ...
0
votes
1answer
129 views

updating a parameter within location (src) using JavaScript

How can I parse the value of status = 'logged-out' to the 3 tags below it, updating the value of login_status = 'logged-out'? <script type="text/javascript"> window.ndm = window.ndm || ...
0
votes
6answers
2k views

jQuery - How to check if img src lacks filename?

I have a <img>: <img src="http://xxx.com/mmm/01.jpg" class="test"> How can I check if the src is missing the 01.jpg and replace it with some other image? Basically if (img src is ...
2
votes
2answers
788 views

jQuery wildcard character in image source

I would like to change the src attribute of an image on click using jQuery. Here's the HTML: <a href="#" class="view2">View 2</a> <img src="images/shoe1a.jpg" class="sb-player" /> ...
1
vote
2answers
4k views

JQuery slideToggle replace image src

This function is called when an up/down arrow is clicked to slide hidden div. If the div is hidden, the arrow points down and changes to up when the div is shown. If the div is shown, the arrow ...