I cant change the server side inputs....
this is what i was thinking but isnt working
$(function(){
$('a.RunGrw').attr('href', $(this).attr('href').replace(" ",""));
$('a.RunGrw').attr('href', $(this).attr('href').replace(" ",""));
});
Originally i was trying to do it on click that was not fruitful. I didnt know how to embed another function in there, as attr wouldnt make sense. if i could embed, i would do something like
function(){
var contents = $(this).attr('href');
contents = contents.replace(" ","");
contents = contents.replace(" ","");
$(this).attr('href',contents);
}
what would i do to get rid of all the whitespace in the hyperlinks. Essentially it is because things which were processed server side spit out into the request space such as "=size= &lossamt= "

New Topic/Question
Reply


MultiQuote



|