I'm trying to make a bookmarklet that will take the url of the current page you are on and send it to an application written in PHP with CodeIgniter.
The problem I keep running into, however, is that I can do a standard AJAX call because it's cross-domain so it's disallowed and I can't figure out a way to use the JSONP via GET method, since CodeIgniter blows away the $_GET variable.
At this point I'll take any suggestions on how to do this...I just want it to work. Also, please note that I need to send a url...and if it's to be passed via a url itself it obviously needs to be encoded or something...which I also haven't figured out how to do, so any pointers on that end (if needed) would be appreciated.