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 ...
1
vote
2answers
148 views

jQuery taking a <img src> in <a> tag to variable

I want to write to var adres a src value of an img in rollovereed element structure is: <div> <a class="link" href="#"> <img src="value" /> </a> <a class="link" ...
0
votes
2answers
2k views

get string between two strings using jquery

If I have this HTML <div class="comment-body"> [img]http://topnews.net.nz/images/YouTube-3.jpg[/img] random text here </div> <div class="comment-body"> ...
0
votes
1answer
2k views

Change parameters in iframe src attribute with jQuery

Searched a lot but didn't find exactly what i'm looking for. I want to resize an iframe dynamically with width of his container. HTML : <div class="row hidden" id="audio"> <div ...
0
votes
4answers
4k views

Relative path or url for html src and href attributes

Using a framework makes it easy to list full url's for my html src and href attributes, and I feel I'm being more thorough by listing a full url instead of a relative path. But is this faster? Am I ...
1
vote
2answers
183 views

adding value attribute on all src tags in jquery

can i adding some value attribute on all src tags in current html page with jquery ? in example this html : <img src="images/slider/slide4.jpg" /> to be like this : <img ...
0
votes
0answers
261 views

How to Diplay the content of src attribute from right to Left (rtl) using HTML iframe Tag

I am new to HTML and javascript.I was assigned a bug which should display the text inside the iframe from right to left for few languages(like Arabic). for that i wrote one example.html: ...
16
votes
8answers
13k 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 ...
1
vote
1answer
231 views

IF/ELSE statements on IFrame Source attribute

I am currently defining the src attribute of my Iframe with the URL + a ID (of specific person) that I am retrieving from a database. It returns a picture that is stored at a repository for each ...
2
votes
3answers
2k 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" ...