Quote (UcoZ) dorjan1976, HIDE tag will appear after next update. HIDE tag makes invisible selected block from unregistered users. Thanks for your answer,i select block unregister user ,i hope soon have the code to hide( my codes )and this appear when user replay in forum. thanks.
Added (2008-06-16, 6:46 Pm) --------------------------------------------- Hello master:Congratulation for the work you done ,i see in this update is not possible to use hide tag,is true?Thanks very mutch for all. Added (2008-06-16, 8:04 Pm) --------------------------------------------- I use this but didn't funksion <script type="text/javascript"> <!-- function default_request() { var ro; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ ro = new ActiveXObject("Microsoft.XMLHTTP"); }else{ ro = new XMLHttpRequest(); } return ro; } var thanks_http = default_request(); var thanksn = new ajax_request(); function thanks_add(act, pid, usp, tid) { thanksn.show_loading(); thanks_http.open('get', 'index.php?act='+act+'&pid='+pid+'&usp='+usp+'&tid='+tid); thanks_http.onreadystatechange = thanks_handleResponse; thanks_http.send(null); } function thanks_handleResponse() { if(thanks_http.readyState == 4){ var response = thanks_http.responseText; var update = new Array(); if(response.indexOf('|' != -1)) { update = response.split('|'); document.getElementById(update[0]).innerHTML = update[1]; var update2 = update[0] + 'b'; document.getElementById(update2).innerHTML = ""; thanksn.hide_loading(); } } } //--> </script>
|