This topic was locked 25th Mar 08 at 5:32pm by Michael |
dog199200 Guest | [F] Change an image in a select board (25th Mar 08 at 1:59am UTC) | | can i please get a code that will let me change an image in a select board only, i want to change the New Thread icon to another image..but only in a select board.. | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Change an image in a select board (25th Mar 08 at 2:02am UTC) | | try this:
Edit where ti says 'OLD IMAGE' and 'NEW IMAGE'
<script> var old = 'OLD IMAGE'; var new_i = 'NEW IMAGE';
for(i=0;i<get('img','tag').length;i++){ if(get('img','tag')[i].src.match(old)){ get('img','tag')[i].src = new_i; } } </script>
Board Footers | |
|
dog199200 Guest | Re: Change an image in a select board (25th Mar 08 at 2:08am UTC) | | ok is it the images url that you put in or ideas? mostly talking for the image im trying to replace, because i put in the two images and the old one is still there | |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Change an image in a select board (25th Mar 08 at 3:26am UTC) | | ok is it the images url that you put in or ideas? mostly talking for the image im trying to replace, because i put in the two images and the old one is still there
You put in the URL. | |
rroll.to— Shorten a link, rickroll your friends. |
|
dog199200 Guest | Re: Change an image in a select board (25th Mar 08 at 3:38am UTC) | | ok then it doesn't work... | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Change an image in a select board (25th Mar 08 at 11:43am UTC) | | Recopy, keep forgetting that I can't use 'new' as a variable name!:P | |
|
dog199200 Guest | Re: Change an image in a select board (25th Mar 08 at 5:08pm UTC) | | ok ty, it works now | |
|