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

1
vote
3answers
84 views

Font SRC doesn't work in HTML/CSS

I am trying to use an external font which is located in the main site folder (erbosdraco_nova_nbp.ttf) but it doesn't work and shows the default html font. @font-face { font-family: ...
1
vote
0answers
58 views

src can't work when use external website in FireFox

My website is www.abc.com and i have a html .It's code is like this: <iframe src="http://www.otherwebsite.com"></iframe> <iframe src="http://bbs.otherwebiste.com"></iframe> ...
4
votes
3answers
338 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" ...
1
vote
2answers
150 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 ...
2
votes
0answers
234 views

Mute icon for html5 video does not work on Chrome or Safari

I am facing a problem of which I do not understand the origin: I have a video playing on a website using the <video> tag. Client asked to add only a "mute" button in the shape of an icon that ...
2
votes
1answer
291 views

Variable in <img src> not working (PHP)

I am so confused and have no idea whats wrong. This img src code works fine in another page and I cant tell whats different. The PHP code is as follows: <?php $edit = $_GET['edit']; $user = ...
0
votes
0answers
79 views

Change img src based on dropdown selected value

I'm looking for a some lines of code that will help me change the SRC of a image, based on the dropdown selected value. I myself was thinking of something like $(function(){ // ...
0
votes
0answers
24 views

Change SRC based on selected option in drop down

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 ...
0
votes
0answers
70 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
1answer
210 views

How to insert variable img src in to javascript function (google maps api)

I'm using the code from this answer to make a toggle legend for a google map. I want each item on the legend to have it's own icon. I have defined the url for the icon along with the layer name and ...
1
vote
3answers
50 views

Change SRC on click of a link.. What am I doing wrong?

I'm currently creating some kind of slideshow.. It's just a floorplan, so it shouldnt be neat looking. I'm using link numbers to specify floors. When clicked on one of the links, the corresponding ...
3
votes
4answers
1k views

How to change image with onmouseover in different place that reverts back to default image on the site?

I'm no expert in this so excuse me if this is very basic but I couldn't find answers. So I want to have navigation section with categories on the left side of the page. Each category is different ...
0
votes
2answers
211 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
2answers
786 views

Loading and changing iFrame 'src' from another page

I have a page with an iFrame and four links to native files that each appear correctly within the iFrame when summoned. I've done this with straight HTML. The problem is that when I land on the page ...
1
vote
2answers
113 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
72 views

@font-face unable to generate the font from the server

I have looked around online and decided to use the following @font-face implementation: My CSS: @font-face { font-family: matt; src: url("/uploads/testing/Interstate-Regular.eot?#iefix") ...
1
vote
2answers
94 views

how can I hide the src of a video html tag?

I want to have video stream without the user can view the src of the video in the html and js files with the inspect element option of the browsers. I have reviewed some frameworks such as: ...
0
votes
1answer
133 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
0answers
42 views

Will turning multiple divs (which contain .GIF images) invisible reduce the memory used for a page?

I have a website that features lots of divs. Each div contains a different animated image. Now, as you scroll down more divs with animated images are added. After a while, a lot of GIFs are on the ...
1
vote
2answers
247 views

Previous/Next Javascript String Handling?

I am trying to make previous/next button for a project of mine. Here is trimmed down code for it. <html> <head> <script> function prevP() {var element = ...
0
votes
1answer
117 views

Changing an image source based on an H1 element in the source code or 'location.path'?

I decided to try a different approach to this problem. Instead of relying on a string I thought it would be more efficient for this specific issue to use the function location.path to determine the ...
0
votes
3answers
323 views

Img src does not wok on folders

How on Earth this small code does not work? <html> <head></head> <body> <img src="/logok/35_Facebook.png" alt="Smiley face" height="80" width="80"> </body> ...
0
votes
5answers
142 views

add relative path - incorrect

I have the directory structure that is shown in the image. If i have this code in HomePage.ss <img src="../../images/sprites.jpg" /> Why this relative path is incorrect? Failed to load the ...
1
vote
2answers
264 views

Change Image Source AND Add File Name Suffix

How do I specify the exact file path directory for the "-hover" image (rollover effect)? Right now, this only works for images living in a child directory. $(function(){ ...
1
vote
3answers
850 views

Dynamically add script tag with src that may include document.write

I want to dynamically include a script tag in a webpage however I have no control of it's src so src="source.js" may look like this. document.write('<script type="text/javascript">') ...
2
votes
2answers
153 views

Changing the image source depending on the parent link?

I've looked into Javascript for this solution but I'm afraid my knowledge for this is just too limited. I'm guessing the solution to this issue would have to be solved with "nodes" but I just can't ...
-2
votes
1answer
177 views

Get image with preg_match

I have to follow code: <div class="beeldengeluid-infobox" style="float: right; margin: 0em 0em 1em 1em; border: 1px #999 solid; background-color: #ffffff;"> <table border="0" cellspacing="0" ...
-1
votes
3answers
531 views

Get image url with preg_match [duplicate]

Possible Duplicate: Grabbing the href attribute of an A element I have to follow code: <div class="thumbinner" style="width:252px;"><img alt="" ...
1
vote
2answers
62 views

Browser javascript require webworker

I have one running webworker and I want it to be able to load external source. How can I do it because it is run in another thread independent from DOM. Thanks.
1
vote
3answers
58 views

What is this number appended to a script url like a parameter?

I'm looking at the source of a page and I'm seeing this: <script type="text/javascript" src="tsp.js?1347090849"></script> What is this number appended to the src? 1347090849
2
votes
4answers
468 views

change img src on click

I have searched the forum for one particular issue, yet all the solutions I found do not work for my problem. I have an image on the left hand side. On the right hand side, I have different words. ...
3
votes
1answer
100 views

How do I set the src address dynamically?

I am trying to grab information from the page url to set the src for a data file. So, say page url is: page.html?x=data_file_3 (The ideas is I could change the url to access other data files: ...
2
votes
3answers
220 views

Detect if all iframes in a page has src

I have a page with a dynamic number of iframes. window.print() has to be called when iframes has loaded (ie. has src). How can this be handled elegantly in pure JavaScript without being to pedantic? ...
0
votes
1answer
182 views

What is the difference between a source folder and a (normal) folder

I'm following this guide: Spring MVC and I realized that I do not know the difference between a source folder (src) and a plain folder. I'm using eclipse, so maybe the difference is only useful in ...
0
votes
1answer
447 views

Cannot open or find file “afxwin.h”, patching with .dff (Building Doom 3 source code) [closed]

I have an issue building the Doom 3 source code, because VS2012 Express is indicating that the file specified is missing. I have searched online for solutions, and it appears that there is an MFC ...
1
vote
4answers
52 views

Exchaning one src attribute with another src attribute via jQuery

I have to images and I'd like to switch the src attributes of the images, when one is clicked: Before: <img src="1.jpg" class="image1" /> <img src="2.jpg" class="image2" /> After ...
0
votes
0answers
74 views

Keep getting img empty src attribute

This is driving me crazy. I load an image and in the src attribute i give it a static link, but it does not load and when i check the 'inspect element' on the browser, it gives me an empty src. The ...
0
votes
1answer
45 views

Unfamiliar characters in a script tag from a Google page…not quite sure what to call it

I was watching "The story of Send" by Google and the animation fascinated me so I viewed the generated code (in Firefox) towards the end of the head (approx line 15) I noticed this: <script ...
1
vote
1answer
497 views

change ckeditor iframe dialog url

I'm developing a ckeditor plugin. I have a iframe dialog like this: CKEDITOR.dialog.add( 'imageDialog', function () { return { title : 'add image', ...
0
votes
4answers
271 views

How to set image in ImageView?

I need to put my own image on some imageView. So that's why I created folder named "drawable" in res folder , and copy my Image in this folder , but now I don't know how to set this image to my ...
0
votes
1answer
99 views

Smarty's template inheritence and img src attribut

Is there a way to make Smarty convert src & href attributs values to the correct URL when using template inheritence exmple: file: web/tpl/layout.tpl <img src="../img/logo.png" /> {block ...
1
vote
3answers
382 views

Does inline javascript block the UI thread?

I read this nice article on how external scripts block the UI thread but it wasn't clear to me whether the blocking is actually due to the presence of the <script> tag or the src='/myscript.js' ...
0
votes
0answers
107 views

How to 'hide' Wordpress path for @font-face

I'm trying to hide every clue which shows that my site is powered by Wordpress. Using sub-domain, apache settings, v-host etc.. But i can't hide @font-face path in src: url(relative path) ...
0
votes
1answer
70 views

ActiveMQ client jar source code

Where do I find the source code for the following jar file? activemq-core-5.6.0.jar
2
votes
1answer
234 views

Django template img src not working

I want to print an image by using a img src tag in a Django template file "base.html": <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en"> <head> ...
0
votes
1answer
102 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
84 views

Icon in Src folder

I am trying to create an icon for a jLabel using an image in my src folder. I am not sure of the file path I would use when creating this icon. if (CoverImg.equals("")) { Icon noImage = new ...
-2
votes
1answer
288 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 2 3 4 5 10