I created a php page and when I pass it via GET to another, it shows the + sign when saved in a cookie. This + is the encoding of the% 20 code. Does anyone know how to remove the% 20 from the url? >
link: page.php? value =% 20my value
code snippet
$('.grupos').click(function () {
var valorGrup= $(this).text();/pega o texto contido no elemento cuja classe é (.grupos)
$('.grupos').attr('href','pagina.php?
nomeGrupo='+valorGrup);//adiciona um link na classa .grupos
});