இடுகைகள்

AJAX லேபிளைக் கொண்ட இடுகைகளைக் காட்டுகிறது

DATATABLE ANCHOR TAG CLICK AJAX ? Tamil Programmers

படம்
#behindthecode $('#table_name tbody').on( 'click', 'tr td a', function () { //HERE AJAX CODE }); by Tamil Programmers

AJAX error handling with jQuery ? Tamil Programmers

படம்
#behindthecode $ . ajax ({ url : 'test.html' , success : function ( response ) { $ ( '#post' ). html ( response . responseText ); }, error : function ( jqXHR , exception ) { var msg = '' ; if ( jqXHR . status === 0 ) { msg = 'Not connect.\n Verify Network.' ; } else if ( jqXHR . status == 404 ) { msg = 'Requested page not found. [404]' ; } else if ( jqXHR . status == 500 ) { msg = 'Internal Server Error [500].' ; } else if ( exception === 'parsererror' ) { msg = 'Requested JSON parse failed.' ; } else if ( exception === 'timeout' ) { msg = 'Time out error.' ; } else if ( exception === 'abort' ) { msg = 'Ajax request aborted.' ; } else { msg = 'Uncaug...