I want to make a 'recommend' button on my app that will go out and fetch the description tag for a given URL, and return it back. i was thinking of having this be a getScript() request to a certain controller (POST or GET?), then when the server returns a response the script inserts it into the text box
What is the easiest method to do this without all the overhead of something like nokogiri? this is the only place im scraping something in my whole app so id rather keep it to a very lightweight method.
Also, should I use GET or POST in my controller (according to the rails way)? Thanks!