Tagged Questions
1
vote
4answers
269 views
HTML Iframe get src with php
I have an webpage where I want to have another html page displayed. I used iframes. The page gets to know what to load is via the get procedure. But there is an fault in this coding I think...
...
2
votes
1answer
130 views
IE 9 has trouble loading HTML5 audio from Tomcat
My HTML5 audio player, when running inside of IE9, has trouble playing audio files located on a server running Apache Tomcat. For example, it'll never load the file at this path:
...
4
votes
1answer
125 views
Targeting iframe src from user input in javascript form
I'm trying to target an iframe's source from a javascript form. So if someone typed in http://www.reddit.com the iframe's source would change to reddit.com
I've tried a few things but you can't put a ...
0
votes
1answer
56 views
updating wordpress img urls
Ive recently ported a wp site to a new host, i did this by exporting the db and then updating it to the new host, its all come across pretty easily but the main problem im having is the img src urls ...
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
257 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(){
...
0
votes
0answers
105 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
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
934 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 ...
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 ...
0
votes
0answers
1k views
Getting iframe current src url in cross domain
I have an iframe in my web app and I need to get its current url from the parent document (also when the user navigates the frame and change the original source url).
Url is needed simply to social ...
0
votes
1answer
499 views
replace two document.write values from two inputs
the javascript below replaces this value http://www.google.co.uk/webhp?hl=en with http://link-ads.blogspot.com/?url=http%3A%2F%2Fwww.google.co.uk%2Fwebhp%3Fhl%3Den on input entry.
<script ...
0
votes
2answers
78 views
how to implement if in javascript?
The javascript below extracts www.google.com from http://mysite.com?url=www.google.com
and writes it as an <a> href link
<script>
var urll = ...
0
votes
3answers
255 views
When I generate the src of an img tag, using php, it strips the forward slash at the end of the tag. Anyone come across this before?
If I have the path to an image stored in $thumbPath and I put that as the img tag's src it strips the end "/" from the tag. Does anyone have any ideas about this?
<img src="<?php echo ...
5
votes
6answers
4k 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 ...
