1rosehip / jplist

jPList jQuery Data Grid Controls is a flexible jQuery plugin for sorting, pagination and filtering of any HTML structure (DIVs, UL/LI, tables, etc).
http://jplist.com
Other
437 stars 176 forks source link

Submit botton loaded with ajax does not work #282

Open rupamdebroy opened 7 years ago

rupamdebroy commented 7 years ago

private function getHTML($computer_cpu_sp){

        $html = "";

when i add jquery submit that load in ajax , but submit does ont work , even simple jquery show hide effect does not work . even simple jquery show hide effect does not work. $html .='>

                                            <a href="javascript:void(0);" class="btn btn-default waves-effect pull-right show">CLICK ME</a>
                                            <a href="javascript:void(0);" class="btn btn-primary waves-effect hide" role="button">BUTTON</a>
                                      ;

and jquery

$(document).ready(function(){ $("#notshow").click(function(){ $("#ip").hide(); }); $("#show").click(function(){ $("#ip").show(); }); });

aaaaa

if CLICK ME BUTTON lode with ajax Button does not work