I have a legacy app that was built entirely in jQuery and HTML. Does a lot AJAX calls and so forth.
I needed an authentication framework for it, so I wrapped it in a Rails app.
Rails -> does the authentication jQuery/HTML -> all the rest
The problem is that the jQuery stuff doesn't seem to work anymore. All my regular AJAX calls get nothing back from the server.
Does Rails interfere with normal AJAX calls? Is there a way to get it out of the way? i.e. I want to do the authentication, then hand off to the jQuery app and not have any interference.
I don't have the time or patience to turn it into a true Rails app.
(Or is there a better way to do this? I looked at some jQuery/Javascript authentication, but couldn't get my head around it)