Ok so i have an application that i use this jquery
$("#band_events").load("/load_events/"+ escape($('#request_artist').val()), successCallback );
It works great but if #request_artist is R.E.M. or somehthing with decimals or something weird rails has problems like
ActionController::RoutingError (No route matches "/load_events/R.E.M." with {:method=>:get}):
here is my routes line
map.load_events '/load_events/:band', :controller => 'pages', :action => 'load_events'
Any suggestions