the value changes in the sending
hi,
When I send a value to another page, if this value with spaces or special caractaire, these becomes %20
example :
before sending : ABOPO PK 18
after sending : ABOPO%20PK%2018
two pages with <meta charset="UTF-8">
Code first page
- $("#LiElmSelector").live("click",function(e){
- var gData = $(this).attr('index');
- $(location).attr("href","pharmacieListe.html?" + gData );
- });
Code second page
- var idSet = document.location.search
- alert('rr :'+ idSet );
- idSet = idSet.replace("?","");
Tnx for your Help