SRC is a common attribute in HTML used to identify the location of a resource which relates to an element.

learn more… | top users | synonyms

-2
votes
1answer
290 views

Internet Explorer doesn't display image. Image ‘src’ remains blank

I hope you're well. Short: My HTML reads: <img id="JavImage"> <script language="JavaScript" type="text/javascript" ...
1
vote
2answers
1k views

Load Image Src from Byte[] Asp.Net MVC 3

I have an ASP.net MVC 3 application where I want to store an image as bytes in the model and then load it from the model into the src attribute of an html image tag. e.g. //Property in Model ...
1
vote
0answers
45 views

iframe closes when trying to change its src value

I am at an absolute loss in this situation. I've tried changing the src value of an iframe with pure JS and jQuery, but both attempts just close the iframe object! I have an iframe in the HTML as ...
-1
votes
4answers
125 views

Replacing image source on mouse hover

Trying to have a different image show up on a mouseover event. Using the following JavaScript: $('div.row-fluid').hover(function() { ...
0
votes
1answer
300 views

Limits of the map on MapsForge [closed]

I would like that the users can't navigate more far than the limits of offline loaded map. I've searched but have not found solution. Any idea?
0
votes
1answer
137 views

Add text before img src

I tried to add a text before a image. That image haven't an default class/id. The code is like this: $('.status img').attr('src', 'LINK IMAGE').after('My text'); Edit: Complete code: $('.status ...
0
votes
3answers
121 views

Changing img src value

I want the visitors of my web page to able to change the background of my web page when they click a link. I have few skills in javascript and jquery and am not sure how exactly to achieve this. Do ...
0
votes
0answers
437 views

Internet Explore 8 won't change image src with .attr()

I have set up a page which will flick through a sequence of images as the user scrolls with their mouse or trackpad. I'm using jQuery to measure the distance from the top of the page - scrollTop() - ...
0
votes
1answer
98 views

How to stop img src from using current URL plus URL in script

I have an image inside a div tag so that on clicking this image, javascript shows/hides another div tag each time this image is clicked. This scripting is used in a Widget on Wordpress, so it is ...
0
votes
3answers
983 views

Differences between 'url', 'src', and 'href' [duplicate]

Possible Duplicate: Difference between SRC and HREF When writing html/css, it seems like these all do the exact same thing. Obviously this is not the case, and if you 'href' when your ...
0
votes
1answer
74 views

Need help using Java EE Eclipse (using src in my jsp)

the situation is I already imported my java classes which are Feed.java, Feedlist.java into the src folder in my workspace. The question is, how can I use it in my JSP? what the syntax to import it? ...
0
votes
0answers
34 views

How to use source folder (src) and package(default) in Eclipse

How to use source folder (src) and package(default) in Eclipse? For example, if I create a Java Project "Assignment", and inside the Java Project I want to group it separately according to week. ...
0
votes
1answer
431 views

IE not retreving Flash Object src from Ajax response

I am trying to read the src attribute of the flash file which i get in the response of a url and create a new file through swfobject. But it returns me "undefined" when i read the src of the embed ...
1
vote
1answer
860 views

javascript dynamically change the location of image src - NO JQuery

I have several pages set up in the same way. Each page has about 10 to 15 images and if you click them, the image changes and becomes unclickable. The code I have for this is: function ...
2
votes
2answers
68 views

images have the same format: some images show up, others dont

i am trying to add images to my webpage, and im using the img tag: for some reason, the image doesn't load. I have more images under the same directory, and when i replace the image name with some ...
0
votes
1answer
57 views

Collapse img tag when src path is wrong in XHTML1.0

I have an img tag. When the src path is wrong, I need to collapse the img tag. I can achieve this by using onerror in HTML4. However, XHTML1.0 is not allowing the onerror attribute. How can I ...
0
votes
0answers
93 views

CKEDITOR not working properly

<head> <title>Sample CKEditor Site</title> <script type="text/javascript" src="/ckeditor/ckeditor.js"></script> </head> <body> <table width='800' ...
0
votes
0answers
120 views

On IE, changing the src of an internal iframe to an supported scheme URL will lead to page redirection

<html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> <script> test = function(){ var ...
3
votes
4answers
19k views

javascript change img src

How can I change my img src using javascript? <img src="../template/edit.png" name=edit-save/> at first I have a default src which is "../template/edit.png" and I wanted to change it with ...
3
votes
2answers
322 views

Follow redirects for image HTTP request, client-side

You know this link: http://media.photobucket.com/image/graphics/PennilessTeacher/Graphics/monster.jpg?o=8 redirects to this link: ...
0
votes
1answer
81 views

serve an image src via a PHP function

I have used the construct <img src="http://yoursite.com/image.php?request_id=XXXX"> and it works well to serve images that may need some preprocessing. However, if image.php requires a lot of ...
0
votes
0answers
20 views

Web SRC Confusion

I think i am still havng issues with firefox, I though I solved this issue using @ to remove all . My code behind constructs the FileName value = /office/charts/temp/chart.jpg but when I run it on ...
2
votes
3answers
127 views

Why isn't my icon changing after “src” attribute on image?

I have the following code when i click on an image where the id is "mailToTechOwner" $('#mailToTechOwner').live('click', function (e) { e.preventDefault(); var origSource = ...
1
vote
1answer
70 views

jquery some url calls are emtpy

I am utilizing jquery to populated some divs with images. When I click on a jstree node, the divs should populate. It works but sometimes my calls to images are coming back empty eventhough there are ...
1
vote
3answers
109 views

Src link and equals sign dissapearing

I am dynamically grabbing image links from a database and inserting them into image tags. This php code checks if there is a link or not. If there is a link, that link is inserted into the img code. ...
0
votes
3answers
682 views

jquery to change the src value of an img tag

The jquery below changes the src value to whatever I specify, however this gets applied to all tags. $("img").attr({src: "/_layouts/images/Flags_Germany_resized.png"}); I have tags which do have ...
1
vote
3answers
496 views

jquery - get src of image set by picturefill

I'm using Scott Jehl's picturefill to serve up images responsively on my site. My code looks like this: <div data-picture id="front-image"> <div data-src="image.jpg"></div> ...
0
votes
2answers
406 views

Linked src folders in Eclipse project and SVN issue

I have an eclipse project set up that is NOT directly placed inside an SVN checkout tree - instead I use 'link src' option in eclipse to set up my project. Thoughts went behind this approach are ...
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
2answers
790 views

Setting img tag's src as the result of a javascript function

I have a function getImgurUrl() and I want what it returns to be the src value of a img tag. How can I do this? my function: function getImgurUrl() { //get imgur url for current image var ...
0
votes
1answer
621 views

Google maps / Iframe dynamic src element

ok so my problem is I have an iframe that is meant to show googlemaps The src of the iframe will be set to hit googlemaps with an address read from the database being inserted as a location At the ...
-1
votes
2answers
431 views

load link src into iframe with jquery

I was wondering if it's possible to have jQuery look at a group of links within a div class, and when one of those links are clicked the src of that link will load in the iframe. I think it would be ...
0
votes
1answer
575 views

Using JQuery loop to alternate image scr

Okay so I have an image (id = "slideshow") in my content section of my site. I'm trying to create a loop that alternates the image src using JQuery. Here is the code I have so far. It seems to loop ...
-1
votes
2answers
99 views

javascript img src for any image on the page

I'm a JS newbie - still learning. I'm looking for a solution similar to this example for displaying the source link of an image in an alert using onclick. However, I want to apply it to any image on ...
0
votes
2answers
104 views

append string to image src using js

I've got a page where there is <img src="/images/product/whatever-image.jpg" alt="" /> I want it so that upon loading of the page, the string "?Action=thumbnail" is appended to src's value, ...
1
vote
6answers
4k views

Passing PHP Variable Into jQuery Function

I'm trying to implement jQuery Flare Video Plugin for my website.. There's a dropdown menu which the user must choose a year from, when the submit button is clicked, a video is meant to show on the ...
0
votes
1answer
226 views

Change img src to direct link, for use in photo gallary

I'm trying to make a page that will accept a URL input by the user then it will display all the images from that address. I have this working, however if the image src on the page is written like ...
1
vote
2answers
277 views

Firefox (via jQuery) reports wrong height for image without src attribute

http://jsfiddle.net/2N854/ html: <img alt="test" width="100" height="100"> javascript: alert($('img').height()); On most browsers (chrome), the alert displays "100" as one would expect. ...
2
votes
4answers
518 views

How to load <img> tag SRC into a javascript variable to be re-used across multiple images?

So here is my plan for fast web page downloading... Place all images into a single png-24 image sprite. Encode that image as base64 and include it in the webpage HTML code. Duplicate the SRC of the ...
0
votes
0answers
93 views

HTTP header target URL of image

I am working on extension for browser where I am need to get the target URL of each request. Here I found that when there is image tag requesting image, its target URL is displaying the URL of the ...
0
votes
1answer
62 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 ...
0
votes
2answers
2k views

Displaying local htm file in iframe?

I am saving some emails on my local machine using MailBee.NET Objects in htm format. A separate folder is created for each email using email messageID on server for example ...
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
262 views

How to load img src from another domain for canvas?

When I load an image in my canvas and specify its src I use a file name that's in the same folder as the html file, and that loads the img. So it would be like this: img.src = 'Untitled.png'; But ...
0
votes
1answer
458 views

jQuery fade and change src

I have and arrow png for my site, and I would like a different colored arrow to appear when hovering above the arrow. I know how to do that, but what I would like to know is if I can create a fade ...
0
votes
3answers
96 views

What is wrong with my PHP code?

I have been seriously been looking at this forever! I'm going out of my mind And can't figure out why my images are not displaying in my custom made footer. I have firefox with firebug and it is ...
0
votes
2answers
160 views

Toggle between Images asp.net MVC3

I have a place holder for a profile photo.I want it to get profile image from database (this works OK)<img src="@Url.Action("Thumbnail", "Photo", new { id = Model.Mebrief.myGuid, size = "small" })" ...
0
votes
1answer
329 views

JavaScript load user's local image in browser after upload

I need to let user load one image from her local file system into the browser for some editing. I don't wanna use flash or others. Only HTML and JavaScript. So what I do is to let user upload the ...
-4
votes
1answer
194 views

IE not showing change when I use runtime JS to change image src

How do I tell IE to refresh an image when I change IMG SRC value via JS? You can see what I mean if you go to the URL below, and on the left under (3) I want a different liner, you choose one of the ...
0
votes
1answer
166 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 ...

1 2 3 4 5 10