Tagged Questions
The src tag has no wiki summary.
11
votes
8answers
3k views
iframe without an src attribute
I would like to create an <iframe> on the page, but then add the src later. If I make an iframe without an src attribute, then it loads the current page in some browsers. What is the correct ...
6
votes
9answers
3k views
Why can't I do <img src=“C:/localfile.jpg”>?
It works if the html file is local (on my C drive), but not if the html file is on a server and the image file is local. Why is that?
Any possible workarounds?
6
votes
2answers
135 views
Is there any reason NOT to use src=“//domain.com/file.js”, which is protocol dynamic?
In some of my E-Commerce applications I've started using src="//domain.com/file.js" in cases where I needed to reference externally hosted scripts that I wanted to include. In my E-Commerce ...
5
votes
3answers
42 views
see if src of img exists
when I place an img tag I create the src attribute dynamically. Is there a way of testing if the src (path where the image is located) actually exists with javascript in order to avoid getting:
5
votes
7answers
370 views
changing the img src with jquery
The html structure I have is something like:
<ul id="something">
<li>
<a href="">
<img src="http://domain.com/directory/file1-128x79.jpg">
</a>
...
5
votes
2answers
4k 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 ...
5
votes
7answers
6k views
Javascript set img src
I am probably missing something simple but it's quite annoying when everything you read doesn't work. I have images which may be duplicated many times over the course of a dynamically generated page. ...
5
votes
4answers
2k views
What is my script src URL?
Is there a simple and reliable way to determine the URL of the currently-executing JavaScript file (inside a web page)?
My only thought on this is to scan the DOM for all the script src attributes to ...
4
votes
1answer
978 views
Unable to resolve drawable in attribute “src”
I'm having a problem when trying to load various images to an image button using an xml file in the drawable-mdpi folder. It worked for one button but doesn't work for the other. The code works for ...
4
votes
1answer
549 views
How to dynamically set “src” for browser or iframe element (Firefox extension)
I am trying to create a Firefox extension that uses a flex application. I have tried to wrap it in XUL types (<iframe> and <browser>) and I have no preference as to which one I use... whichever ...
4
votes
3answers
2k views
javascript check if img src is valid?
I have something like:
document.getElementById('MyPicture').src = 'attempted.png';
If the client cannot get that resource, I would like to replace it with:
document.getElementById('MyPicture').src ...
4
votes
4answers
3k views
How to set the image src using jQuery
I am trying to change the image src attribute using jQuery
jQuery("#imageID").attr('src','http://localhost:8080/images/1/myImage.png' );
using the above code i can change the src attribute, but ...
3
votes
1answer
28 views
Jquery : get previous image with prev()
here's my problem :
$("#gallery > img").live('click',function() {
$(this).prev().css("background" , "#f99"); // WORKS !
var src = $(this).prev().src; // DOESN'T WORK (src is ...
3
votes
3answers
73 views
replace image src text with img
if a HTML code is
<div class="photos">
http://myweb.com/imgs/img1.jpg
https://myweb.com/imgs/img2.gif
http://myweb.com/imgs/img3.png
https://myweb.com/imgs/img4.bmp
</div>
how can you ...
3
votes
3answers
273 views
Is It More Efficient to Put Raw Image Data in the Src Attr?
I recently found out that the src attribute of an image allows you to put raw base 64 image data straight into it. Am i right in supposing this is technically more efficient than a separate image ...
3
votes
3answers
4k views
Download Specific Android Source Code
I would just like to know how to download specific version of Android Source Code. I have already tried the following command
repo init -u git://android.git.kernel.org/platform/manifest.git -b ...
3
votes
5answers
1k views
Regular Expression to get the SRC of images in C#
I'm looking for a regular expression to isolate the src value of an img.
(I know that this is not the best way to do this but this is what I have to do in this case)
I have a string which contains ...
3
votes
3answers
3k views
How to get the file-path of the currenctly executing javascript code
I'm trying to do something like a c #include "filename.c", or php include(dirname(FILE)."filename.php") but in javascript. I know I can do this if I can get the URL a js file was loaded from (e.g. the ...
3
votes
5answers
509 views
I want to implement fire-and-forget request for in img src in JavaScript
I'm trying to implement fire-and-forget on an img src=... call from a web page, and am looking for the most solid method. Why?
In most Web tracking systems like Omniture or Coremetrics, there is a ...
2
votes
1answer
142 views
emacs: org-mode can't edit c source code
When I using emacs's org-mode edit c program, that is when I edit the below segment:
#+begin_src c
#define MAX 100
#+end_src
and after I call the function 'org-edit-src-code' to edit the c code in ...
2
votes
2answers
55 views
Src images and security
What about if I let users insert links to their own host's images, do I need to prevent any type of security issue?
To better exaplain, <img src="somedomain/somefile"/> in which case should ...
2
votes
1answer
40 views
Relative img src is resolved as absolute… what am I missing?
In my project users can enter the URL of a website and the system goes and fetches all images from this website. Because the src of the image can be relative, the system "normalizes" it, so:
an ...
2
votes
1answer
42 views
extracting src and setting as href value…after ?url= and before &addclient=
If my url is http://link-ads.blogspot.com/?url=http://stackoverflow.com/
The code below extracts http://stackoverflow.com/
<script type='text/javascript'>
$(document).ready(main);
function ...
2
votes
3answers
134 views
Getting the href attribute of an image with Javascript
New to Javascript, really need some help!
Now I have an image in a HTML page, like this:
<a class="p" href="http://www.abc.com"><img src="http://www.abc.com/logo.jpg" alt="" /></a>
...
2
votes
2answers
299 views
get src attribute of an image based on class or id
I want to get src in image based on class or id.
Ex. On html page there are many <img src="url"> but only one have a class or id:
<img src="url" class="image" or id="image">
How to get ...
2
votes
1answer
196 views
jquery re-establish img src in .load() function
I'm trying to figure out how to re-establish the img src if the image src path is invalid or no image is found. I have a dynamically created img src path that may sometimes be pointing to a directory ...
2
votes
1answer
255 views
How to get an attribute from a hierarchy? (read)
I've got the following code (example):
<body>
<div id="obj1">
<span id="obj2">
<img src="someimage2.jpg" class="image" />
</span>
<img src="someimage2.jpg" ...
2
votes
3answers
140 views
<script> tag must include separate </script> tag?
Excuse the poor title for my question, I'm not sure how to ask this. I noticed today while doing some testing that the way I close my <script> tag either makes or breaks my page. For example, ...
2
votes
1answer
305 views
about:blank in src
I'm getting "about:blank" in my src=""
<form action="check.php" method="POST">
<input type="submit" value="POP2!">
<input type="hidden" name="video" value='<embed ...
2
votes
3answers
413 views
jQuery- dynamically alternate between image sources within an animated div
I have a menu that is animated to slide across the page when triggered by clicking on an image of an arrow. I'd like to switch the arrow to a different image source once the menu's animation has ...
2
votes
2answers
494 views
find image src that :contains?
Morning all,
I have a list of images like so:
<ul id="preload" style="display:none;">
<li><img src="afx4000z-navy-icon-1_thumb.jpg"/></li>
<li><img ...
2
votes
2answers
397 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" />
...
2
votes
2answers
517 views
Relative Image Path not showing Image in FireFox
I am trying to open a html page using Iframe. The Html page has some text and Images.
The Image Source is specified using releative path for e.g. ....\Images\Img1.jpeg.
Its working fine in IE and ...
2
votes
1answer
173 views
jquery loads content only once
Hello my problem is that whenever i load content to an iframe through javascript and jquery it only loads the first time and then i cannot load anything over it.
the function I use is this:
function ...
2
votes
1answer
252 views
jquery gettings variables from img src rather than window.location.href
I found this snippet of code, which works a treat:
$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (!results) { ...
2
votes
2answers
470 views
Can you request/get variables from img src?
This is a two part question, but I want to make sure the first is actually achievable.
Firstly, can you get access variables set by img src? I am attempting jQuery, including MySQL UPDATE etc, but ...
2
votes
4answers
867 views
Create an interval to change image in jQuery?
I have a working script like this:
jQuery(document).ready(function(){
$('.video-thumb img').bind('mouseover',function(){
var new = $(this).attr('src').replace(/default.jpg/,'1.jpg');
...
2
votes
1answer
451 views
changing src reference based upon https
I'm adding a facebook comment widget to a website. I'm placing this widget in a file that is included on everypage. The navigation is relatively linked so it switches back and forth from http and ...
2
votes
4answers
2k views
How can I return binary image data from an abortable AJAX request and set the result to the src of an HTML/DOM image?
I'm writing a web application that involves a continuous cycle of creating (and removing) a fair number of images on a webpage. Each image is dynamically generated by the server.
var img = ...
2
votes
3answers
776 views
img src & jQuery?
I have an image, and using jQuery I've turned it into a button.
The so called button has two states: regular and pushed.
Using jQuery I detect a "mousedown" and "mouseup" and replace the "src" ...
2
votes
4answers
116 views
JavaScript Source Query
While browsing the code of some websites I sometimes notice that some JavaScript files are included like this:
<script type="text/javascript" ...
2
votes
2answers
285 views
Opera Bug: src=“” generated by asp:image is empty
I have the following problem with Opera.
The following asp.net code
<asp:Image runat="server" ID="imgExpand"/>
<ajaxToolkit:CollapsiblePanelExtender ID="cpe" runat="Server"
...
2
votes
6answers
2k views
Pass vars to JavaScript via the SRC attribute
In my HTML file I have linked to the JS with:
src="myscript.js?config=true"
Can my JS directly read the value of this var like this?
alert (config);
This does not work, and the FireFox Error ...
2
votes
2answers
4k views
Variable for img src=
I have a question.
Firstly, I am not going to pretend that I know what I am talking about here. I am a newbie to http and JavaScript.
I think my question may be answered in this post
...
2
votes
2answers
2k views
In Email, Image (img) Source (src) Tags are rewritten as relative links. How to fix?
I'm working on sending out an html based email, and every time it sends the image src tags and some of the anchor href tags are modified to be relative url's.
Update 2: This is happening between ...
1
vote
2answers
28 views
Loading portion of site into iframe
I have a script which loads content into a iframe using:
document.GetElementById('iframeid').src = 'site.html';
Now, the problem is that I want only a portion of the page loaded. If I could use ...
1
vote
2answers
64 views
Performance hit of using php versus html with 'img src'
I'm displaying a gallery of pictures which I store below the root for security. There are thumbnails for each jpeg. When displaying the gallery, I have successfully set
<img ...
1
vote
1answer
51 views
jQuery on thumbnail click replace second img src with thumbnail src
JSFIDDLE HERE
On pressing a .miniimg/2/3 it should replace the src of an img classed .presentimg which i have appended using jquery to the div .imgcontainer, I have been through the jQuery (BELOW ...
1
vote
2answers
29 views
Extract iframe src before character
I am selecting this iframes src
<iframe src="http://www.youtube.com/embed/Y44_kWSoiPc?rel=0" frameborder="0" allowfullscreen></iframe>
using
var youtubesrc = ...
1
vote
5answers
60 views
Replace img src from elements attribute
If I have this html on my page
<img src="samesrc" class="commentimg" name="differentimg1"/>
How onclick can I toggle the src= of <img> with the name= attribute, so when I click the ...