jQuery filename manipulation
        Posted  
        
            by Adi
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Adi
        
        
        
        Published on 2010-04-09T14:48:51Z
        Indexed on 
            2010/04/09
            14:53 UTC
        
        
        Read the original article
        Hit count: 557
        
Hi all,
I am trying to do a fancy blur/fade effect (which means i need 2 images) but I only want to load 1 in the HTML (in case js is not active) and add the other filename via jQuery (copying and renaming the file/src)
The pure html is along the lines of:
<div id="work">
 <div>
  <img src="css/images/abc1.jpg" width="360" height="227" alt="" />
 </div>
 <div>
  <img src="css/images/xyz1.jpg" width="360" height="227" alt="" />
 </div>
</div>
But the html after jquery has manipulated the DOM needs to be like:
<div id="work">
 <div>
  <img src="css/images/abc0.jpg" width="360" height="227" alt="" />
  <img src="css/images/abc1.jpg" width="360" height="227" alt="" />
 </div>
 <div>
  <img src="css/images/xyz0.jpg" width="360" height="227" alt="" />
  <img src="css/images/xyz1.jpg" width="360" height="227" alt="" />
 </div>
</div>
The question is, what is the jQuery to clone/copy the relative images and then rename the src?
Any help would be much appreicated.
A.
© Stack Overflow or respective owner