php - how to load the value of <a href=""> tag using ajax -
i'm working codeigniter calendar class library , want "next month" , "previous month" button work without reloading page, refresh month.
in model i've created calendar template following configuration:
$this->conf = array( 'start_day' => 'monday', 'show_next_prev' => true, 'next_prev_url' => base_url().'index.php/admin/reservation' ); $this->conf['template'] = ' {table_open}<table border="0" cellpadding="0" cellspacing="0"class="calendar">{/table_open} {heading_row_start}<tr>{/heading_row_start} {heading_previous_cell}<th class="prev_button"><a href="{previous_url}"><<</a></th>{/heading_previous_cell} {heading_title_cell}<th colspan="{colspan}">{heading}</th>{/heading_title_cell} {heading_next_cell}<th class="next_button"><a href="{next_url}">>></a></th>{/heading_next_cell} {heading_row_end}</tr>{/heading_row_end} {week_row_start}<tr>{/week_row_start} {week_day_cell}<td>{week_day}</td>{/week_day_cell} {week_row_end}</tr>{/week_row_end} {cal_row_start}<tr class="days">{/cal_row_start} {cal_cell_start}<td>{/cal_cell_start} {cal_cell_content} <div class="day_num">{day}</div> <div class="content">{content}</div> {/cal_cell_content} {cal_cell_content_today} <div class="day_num highlight">{day}</div> <div class="content">{content}</div> {/cal_cell_content_today} {cal_cell_no_content} <div class="day_num">{day}</div> {/cal_cell_no_content} {cal_cell_no_content_today} <div class="day_num highlight">{day}</div> {/cal_cell_no_content_today} {cal_cell_blank} {/cal_cell_blank} {cal_cell_end}</td>{/cal_cell_end} {cal_row_end}</tr>{/cal_row_end} {table_close}</table>{/table_close}
and in view:
<script type="text/javascript"> $(document).ready(function(){ $('.next_button').click(function(){ alert("working"); }); }); </script>
i don't know on how load value of class "prev_button" , "next_button" in calendar template. please help!
if need add class link can use:
<script type="text/javascript"> $(document).ready(function(){ $('.next_button').click(function(){ $('a').addclass('yourclass'); }); }); </script>
Comments
Post a Comment