SRC is a common attribute in HTML used to identify the location of a resource which relates to an element.
0
votes
0answers
17 views
image stuck - 'pending' network status for an src/ng-src
I'm writing an application whose data has multiple image links, that I assign into ng-src (Angular's src directive). every once in a while, the image is stuck and I see a 'pending' status on the ...
0
votes
1answer
19 views
How do I load multiple scripts without them colliding?
I'm working on a site that needs to load multiple scripts. However, every now and then, one or two of them won't load.
Is there a better way to load scripts to a page than what I have below? ( see ...
1
vote
1answer
33 views
A javascript function that works in the head, but not as source file
I have a javascript function to validate a form.
<script type="text/javascript">
function formValidate()
{
// create array containing textbox elements
var inputs ...
-2
votes
0answers
57 views
html img src attribute in php echo not displaying the image
There is the block of the PHP code in a document where are a HTML5 code and a PHP code combined:
... several tens of rows of the HTML code ...
<!-- TemplateEndEditable ...
0
votes
1answer
47 views
I have an external executable jar file that I wish to edit the java files in it with Eclipse
But when I add the external jar file to a project it doesn't put the java files in the src. What do I do?
0
votes
2answers
2k views
How to Find Img Tags Having src null. and deleting it
I need to delete or hide the Img tag or its parent when Img have src="".
I have a script but it is not working..
window.onload=function(){
var imgs = document.getElementsByTagName("img");
...
0
votes
1answer
127 views
Onclick background value change to HTML tag in CSS
I have my page setup and navigation in order. I also have my background image appearing correctly. Now my goal is to make the background image change onclick.
My background is achieved in a ...
2
votes
2answers
30 views
Javascript - apply a class to iframe with two different type of sources
How can I target more than element in a single jQuery selector?
I am trying do add a class to all my soundcloud and youtube widget when a page is loaded. I have no problem doing it for soundcloud, ...
4
votes
4answers
67 views
How do I set the src to an iframe with jQuery?
My iFrame looks like this:
<iframe id="iframe" name="iframe1" frameborder="0" src=""></iframe>
And my script looks like this:
<script type="text/javascript">
...
7
votes
3answers
3k 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 ...
0
votes
1answer
42 views
display src of html5 audio file
I have an app that uses tiny mce to embed audio files using html5 so it ends up embedding like this;
<audio width="300" height="32" preload="none" controls="controls" src="../upload/blah ...
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
0answers
42 views
How to save URL content locally for Dojo using PhoneGap in Xcode
I'm developing an application in Dojo using PhoneGap in XCode IDE. There is a link
http://serverapi.arcgisonline.com/jsapi/arcgis/3.4compact/
This src file is available online. Its functionality is ...
0
votes
4answers
42 views
Beginner JavaScript: using src
EDIT:[Honestly this works fine you can read my edit comment below.]
So I am very new to JavaScript. This book I have tells me that I can write the script code in another file that has a .js ...
1
vote
1answer
19 views
Can I set a hashChange listener to an iFrame src?
I'm wondering if I have a page, that contains multiple iFrames and if I'm communicating through modification of the iFrame src attribute, would it be possible to set a hashChange listener on the src ...
0
votes
3answers
28 views
Change an image using the value typed into a textbox
New to Javascript and would appreciate some help with the following, be gentle with me.
I would like to change an image depending on the value typed into a textbox.
My script is
<asp:TextBox ...
2
votes
2answers
1k views
dijit.form.button with img src in programmatic
Is there a way to add img src tag in programmatic for a dijit.form.button?
In declarative, we can do something like this :
<div dojoType="dijit.form.Button"><img ...
0
votes
0answers
31 views
How can I change an image src, which is inside a tab, when this tab is currently selected?
I need some help for a specific problem. I haven't found anything to help me yet so I'm just asking.
I use tabs (Bootstrap), and inside each one of them there is an img and a small text :
<div ...
0
votes
1answer
25 views
Ant: javac task: path versus pathelement
I would like to know the difference between the
following javac Ant tasks.
<!-- Task 1 -->
<javac destdir="${build}" classpath="classes.jar" debug="on">
<src path="${src}"/>
...
0
votes
0answers
29 views
how to display image in html in node.js
i have tried to display image in html after get response from server.
i have public folder and image(sub folder ) within that public foler and image (sub folder) contain 1.jpg
i have tried to ...
0
votes
0answers
22 views
how to display the last image of a file without knowing the name of the image <IMG SRC
I have an FTP server with 3 kind of photos:
a) the photos called c001, c002 ...
b) the photos called f001, f002 ...
c) the phots called 000abcd_date_time_ramdomnumber
I display in my website the ...
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
36 views
What is the right way to write my script 'src' url for a local development environment?
I'm working on a local environment and I'm not sure if I've written my src URl correctly because my functions aren't working. The bold script tag has the src in question.
<!DOCTYPE html>
...
0
votes
2answers
63 views
How to change image src depending on whether image exists
I'm trying to load one of two different thumbnail images according to whether or not an image corresponding to a database entry and identified with an id as part of its name exists on the system.
...
1
vote
2answers
57 views
Why using “src=//” instead of “src=http://” [duplicate]
I had never noticed that before, but if you go to the Google libraries pages, all the HTML is coded with the src=//expression, i.e. for Jquery :
<script ...
0
votes
2answers
248 views
PHP: Find images and links with relative path in output and convert them to absolute path
There are a lot of posts on converting relative to absolute paths in PHP. I'm looking for a specific implementation beyond these posts (hopefully). Could anyone please help me with this specific ...
1
vote
3answers
95 views
php check if img src is image [closed]
I have this code, which should display image if it gets one generated, or write "no image" if not.
<body>
<?php
$src = "somescript.php";
// if (getimagesize($src)) {
...
1
vote
2answers
71 views
How to reload the youtube video in my HTML every time the page is run?
I have a youtube video embedded, just like this:
<object width="640" height="360">
<param name="movie" value="https://www.youtube.com/v/M7lc1UVf-VE?version=3"></param>
...
0
votes
1answer
58 views
How to replace src attribute of embed tag using JavaScript?
In my webpage, I am inserting a youtube video just like this:
<object width="640" height="360">
<param name="movie" ...
-3
votes
0answers
43 views
how to get img src jpg from php? [duplicate]
This is very easy, but I dont find using google
how to get img src jpg from php ?
normal : <img src="http://domain.com/horse.jpg">
I want : <img ...
0
votes
2answers
63 views
Changing SRC attribute of IFRAME on load does not work
I wanna change src attribute of my iframe tag while loading the page:
<script>
function replaceSrc()
{
document.getElementByTag("iframe").src="new_link";
}
...
1
vote
2answers
182 views
Edge Animate: Set image src within a symbol - How?
I have created a symbol in Edge Animate, which contains a rectangle as view area and an image and text as contents of that view area. I want to set text and image src before I start the animation of ...
0
votes
1answer
19 views
Reference or find unidentified parent element from within that element
If this question cannot be answered, then I'm going to post a second, "fall back" question.
I have been writing javascript jsonp type apps where the client has to insert a single javascript line into ...
0
votes
1answer
47 views
Changing a an image src file using javascript wont change picture displayed
essentially i have this div
<div id="trafficcam" style="text-align:center;display:none;">
<img id="image" ...
0
votes
2answers
38 views
I can't figure out why my JavaScript file won't display when linked
I can't figure out what's wrong here and I'm not getting any output from the Javascript file. I am trying to use src to be able to type my javascript file outside of the index file. This just prints ...
0
votes
1answer
25 views
Entire image link with a section of the image mapped elsewhere
When you link an entire image like in the HTML code below, can you still use image mapping to link a specific area on that image to a different address than what would be specified in the code below. ...
0
votes
1answer
76 views
R cannot be resolved into a variable when integrating two packages
i try to integrate Twitter project to Facebook project by copying and paste all the relevant files and clean the integration project. However, in the GEN file(R.java and BuildConfig.java) the twitter ...
17
votes
5answers
4k 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 ...
0
votes
0answers
18 views
Variable name of a GetUserMedia request?
I'm using a JavaScript DOM element called Photobooth seen here: PhotoBooth Demo
It uses getUserMedia to get the users video, There is a src of the video element normally for example :
...
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 ...
1
vote
1answer
26 views
Get specific tag from api code
I want to get the IMG SRC tag from the following code:
<pod title="Scientific name" scanner="Data" id="ScientificName:SpeciesData" position="200" error="false" numsubpods="1">
<subpod ...
0
votes
2answers
39 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
4answers
147 views
Changing a large image with JavaScript when clicking a thumbnail image
I have used the following HTML/JavaScript code to make a webpage where I can change a larger image by clicking a thumbnail image:
<script type="text/javascript">
function ChangeImage(a) {
...
-2
votes
1answer
154 views
Dynamically setting img src tag with c#
Im trying to set the source of the image tag with C# because the module is not always on the same page with the same path although it is not working.
<img id="3ways" src='"<%= ...
-1
votes
2answers
23 views
get src atribute in a code like this with jquery
<div class="thumb">
<a class="clip-link" data-id="45778" title="Title" href="http://mysite.com">
<span class="clip">
<img src="http://mysite.com/17.jpg" ...
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
2answers
25 views
PHP/html/mysql Image display
Hey my php/mysql/html people,
I have this variable that holds a path to an image and then insert it into a db (yes, I am using mysql_real_escape_string) which works perfectly.
$file_name = ...
0
votes
3answers
60 views
How do I access a .gif file in a package in the src folder?
I'm working on a Java program using Eclipse. Right now, I have an src folder that contains 2 packages: memory.views and memory.resources.
In the memory.views package, I have my Main.java file. In the ...
0
votes
1answer
99 views
jQuery src replace crossfade on hover
I have a couple of images on my Joomla site, each one with a black&white version and a color version. I'd like to change a part of the src ('bw' to 'color') when hovered over with a nice ...
0
votes
1answer
25 views
How to load a different image depending on the page content?
I want to be able to have one image that loads into static html pages based on a conditional argument; so if X="something" then src="something.jpg", if X="another" then src="another.jpg" and so on.
I ...










