Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using jQuery to replace an iframe sort of environment on a page by loading the pages content into a div instead of a url into an iframe...I don't have anything against iframes or anything but it just seems to be cleaner and more versatile (returning fragments of html etc) than having whole pages for that...

Anyway, using a simple example, will this load the image twice? or does it modify the src attribute before the browser tries to open the image? The reason it needs to be done at all is that it allows the fragment that is being loaded to have the images relative to it work but obviously once included in a page (in a different directory), the relative path is broken...but this is just an example i guess...

$(document).ready(function() {

    $("#a_get").click(function() {

        $("#content").load("test/page.html"
                          ,""
                          ,function() {
                              $("#content img").each(function(intIndex) {
                                  var src = $(this).attr("src");
                                  var srcArray = src.split("/");
                                  // change the src attribute
                                  $(this).attr("src","test/" + srcArray[srcArray.length-1]);
    		              });
        });

     });

});

for the sake of the example, test/page.html could be simply

<p>Picture of a House</p>
<img src="house.jpg" alt="Particular house" width="640" height="480" />

I should also ask whether there is a better way to achieve this (likely!)?

EDIT:

Using @redsquare's method which I thought initially resolved the problem (the page didn't have a broken image, "blink", and then the correct image appear) as it was with my original code, however, checking the web server logs a request for the broken image is still being made...i've narrowed it down to this:

$.get("test/page.html" ,"" ,function(data) {
      var x = $(data);
      alert("pausing...check logs");
});

if I was to check the logs whilst the alert box is visible, a request to the images has already been made...does this mean that as soon as $(data) has been used the html gets "in some form" added to the page...? I ideally want to be able to manipulate all the elements in data without any sort of loading, and then add it to the page...

share|improve this question
added another answer. see if it helps! – redsquare Aug 19 '09 at 12:47
thanks for your work redsquare – davidsleeps Aug 21 '09 at 4:13

3 Answers

up vote 0 down vote accepted

As soon as you are creating <img> tags - the browser will try to load them. Either through .load() or $(data) the browser is creating a IMG tag and setting src - effectively preloading them. The only way I could see getting around this is using a regexp like the one redsquare suggests. I saw a few improvements that could be made in the RE.

Here is an example allowing single and double quotes in src - I also scoped it to only search in img tags, and case insensitively. And just to show a slightly different approach - used $.ajax instead of get/load

$.ajax({
  url: 'test/page.html',
  dataType: 'text',
  success: function(data) {
    $('#content').append(
     data.replace(/<img([^>]*)\ssrc=['"](?:[^'"\/]*\/)*([^'"]+)['"]/gi, "<img$1 src='test/$2'")
    );
  }
});
share|improve this answer
brilliant, thanks! (except you need to remove the semi-colon at the end of the replace statement) – davidsleeps Aug 21 '09 at 4:07
@davidsleeps - no problem. ; removed - thanks for the air-coding correction ;) – gnarf Aug 21 '09 at 8:15

Dont use .load which appends the content into the div. Use .get, amend the response then append into the dom.

$.get("test/page.html" ,"" ,function(data) {
      $(data).find('img').each(function(intIndex) {
          var src = $(this).attr("src");
          var srcArray = src.split("/");
          // change the src attribute
          $(this).attr("src","test/" + srcArray[srcArray.length-1]);
      }).appendTo('#content');
});
share|improve this answer
@redsquare, this code strips the rest of the data out...or more accurately doesn't append it to the div...I'm not entirely sure how to modify your code to make this work... – davidsleeps Aug 19 '09 at 0:54
have "unmarked" this as the answer as it still makes a request for the image...although you don't see this visually... – davidsleeps Aug 19 '09 at 2:39

Can you try the following...I got some help with the regex as it really is not my skill..!

$.get("test/page.html" ,"" ,function(data) {
       data.replace(/src='(?:[^'\/]*\/)*([^']+)'/g, "src='test/$1'")
       $('#content').append( data );
});
share|improve this answer
will try that out, although ideally i'm after a non regex solution... – davidsleeps Aug 19 '09 at 12:51
why is that dave? – redsquare Aug 20 '09 at 6:25
the jquery dom manipulation is just sooooo neatly packaged...and being able to modify attributes of an object is straightforward...but i'm open to regex – davidsleeps Aug 21 '09 at 4:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.