Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(function ()
- {
- $.post( "docs/ajax_1.php", function( data ) {
- $( "#documentation" ).html( data );
- });
- $(".CITdocs").show();
- $("body").on("keyup", "#search_ID", function() {
- var text = $(this).val();
- if(text.length == 0)
- {
- $('#documentation td').show();
- return -1;
- }
- $('#documentation td').hide();
- var find = $('td.mta:contains('+ text +')');
- find.show();
- });
- $("body").on("click", ".mta", function () {
- var varCIT = $(this).html();
- $.post("docs/ajax_2.php?CITinfoget=" + encodeURIComponent(varCIT), function( data ) {
- $(".CITdocumentation").html( data );
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment