Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/10/2012, 09:30
Avatar de angel1993
angel1993
 
Fecha de Ingreso: octubre-2009
Mensajes: 752
Antigüedad: 15 años, 1 mes
Puntos: 22
Respuesta: Reemplazar links con valor de cookie

En realidad no usa coockies, se fija en lo que pones en la url, pon esto en tu blog al final de la págna..
Código Javascript:
Ver original
  1. <script>
  2. function get(name){
  3.    if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search)) ;
  4.       return decodeURIComponent(name[1]);
  5. }
  6.  
  7.  
  8. var enlaces = document.getElementsByTagName('a');
  9.  
  10. if( get('id') != ''){
  11. for(i=0;i<enlaces.length;i++){
  12.  
  13. if(enlaces[i].href.toString().indexOf('?') == "-1"){
  14.     enlaces[i].href = enlaces[i].href + '?id=' + get('id');
  15.  }else{
  16.     enlaces[i].href = enlaces[i].href + '&id=' + get('id');
  17. }
  18.                
  19.                
  20. }}
  21.  
  22.  
  23. </script>
__________________
@angelxab Twiiter