ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/skin/board/cd2_reservation/img/jquery.phpcode_0/ |
Upload File : |
/* * phpCode - AJAX based syntax highlighting for PHP code * * Pass ajax script URI optionally or use default "./phpcode.php"; * Example: jQuery(".phpCode").phpCode(); * Example: jQuery(".phpCode").phpCode("./another_script.php"); * * Version: 1.0 * Copyright (c) 2008 Ronald Vilbrandt * http://blog.rvi-media.de/ * info@rvi-media.de */ (function() { jQuery.fn.phpCode = function(url) { if(!url) { url = "./phpcode.php"; } return this.each(function() { jQuery(this).each(function() { var elem = this; jQuery.post(url, {code : jQuery(this).text()}, function(data) { jQuery(elem).html(data); }); }); }); } })();