WAFasGBS Ajax

Ken Webb 2013-04-15T15:45:52Z

Web App Frameworks as Graph-Based Software - Ajax

The main.js.erb file includes 20 JavaScript jQuery ajax requests. These are client-server connections, where the web page asks the web server to do something.

event type url
google.maps.event.addListener(marker, 'click' GET /info_window
google.maps.event.addListener(map, 'dragend' GET /things.json
$('#address_form').live('submit' GET /address.json
$('#combo_form').live('submit' POST /users.json
success GET /sidebar/search
POST /users/sign_in.json
success GET /sidebar/search
POST /users/password.json
$('#adoption_form').live('submit' POST /things.json
success GET /info_window
$('#abandon_form').live('submit' POST /things.json
success GET /info_window
$('#edit_profile_link').live('click' GET /users/edit
$('#edit_form').live('submit' POST /users.json
$('#sign_out_link').live('click' DELETE /users/sign_out.json
success GET /sidebar/combo_form
$('#sign_in_form').live('submit' GET /users/sign_in
$('#back_link').live('click' GET /sidebar/search
$('#reminder_form').live('submit' POST /reminders.json
success GET /info_window

Return to Web App Frameworks as Graph-Based Software.

return to main page