help me

help me

hi guys I'm new to Jquery and I want your help.. I need to create a table and perform  CRUD operations using Jquery and AJAX in ASP.NET MVC 3  I'm not using a Database I'm just using a Hard Coded List for the Table
help me to complete this task..

this is the html code i used

<div id="demo">
    <table id="movie_info" class="display">
        <thead>
            <tr>

                <th>
                    Title
                </th>
                <th>
                    Genre
                </th>
                <th>
                    Release Date
                </th>
            </tr>
        </thead>
        <tbody>
        @foreach (var MovieData in Model)
        {
        <tr id="@MovieData.Id">
                    <td>@MovieData.Title</td>
                    <td>@MovieData.Genre</td>
                    <td>@MovieData.Release_Date</td>
                </tr>
                }
        </tbody>
    </table>
</div>
<form id="add_title" action="#" title="Add New Movie">
<label>Title</label><input type="text" id="title" />
<label>Genre</label><input type="text" id="genre" />
<label>Release Date</label><input type="text" id="rel_date" />
</form>