Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Transparent links (10th Jul 08 at 4:37pm UTC) | | Code: - <script type="text/javascript">
- <!--
-
- var iLink=document.getElementsByTagName('a');
- for(i=0;i<iLink.length;i++){
- if(iLink.item(i).firstChild && iLink.item(i).firstChild.nodeName.match(/img/i)){
- var iTheGo=iLink.item(i).firstChild;
- iTheGo.style.opacity=.6;
- iTheGo.style.filter='alpha(opacity=50)';
- iTheGo.onmouseover=function(){
- this.style.opacity=1;
- this.style.filter = 'alpha(opacity=100)';
- };
- iTheGo.onmouseout=function(){
- this.style.opacity=.6;
- this.style.filter = 'alpha(opacity=50)';
- };
- }
- }
-
- //-->
- </script>
Well as to know I know that some forums has copied this, so I will submit it for public use.
Please do not PM me for support, that's what the coding support board is for. | |
|