Am learning my first steps on backbone.js..
Building an app in codeigniter, submit button triggers the function in application controller to send the data to the database..
<?php echo form_open('welcome/process_form','myform') . "\n"; ?>
<p><label for="value">Value: </label><?php echo form_input('value'); ?></p>
<p><label for="tags">Tags: </label><?php echo form_input('tags'); ?></p>
<?php echo form_submit('submit', 'Submit'); echo form_close(); ?>
As simple as that.. a simple codeigniter form and submit button..
Now i want to include backbone.js in the scenario and want it to perform the action obviously reload..
What features of backbone do i look for and get started..??