- 1
- 2
- 3
- 4
- 5
- 6
- 7
function insertOpenTable() {
return "<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" border=\"0\" class=\"footnote\">";
}
function insertCloseTable() {
return "</table>";
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+144
function insertOpenTable() {
return "<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" border=\"0\" class=\"footnote\">";
}
function insertCloseTable() {
return "</table>";
}
http://www.mts.ru/upload/images/script/js.js
scalar4eblo4no 12.08.2010 12:36 # +4
А вообще что-то много с mts.ru сегодня =)
Lure Of Chaos 12.08.2010 12:37 # +3
kainwinterheart 12.08.2010 13:49 # 0
sub JavaS_Popup {
my $url = shift;
my $width = shift;
my $height = shift;
if ($width eq '') { $width = "820"; }
if ($height eq '') { $height = "600"; }
print "<script language=JavaScript>
<!--
function TripodShowPopup() {
var popupURL = \"$url\";
var popup = window.open(popupURL,\"TripodPopup\",'to olbar=0," .
"location=0,directories=0,status=0,menub ar=0,scrollbars=0," .
"resizable=0,width=$width,height=$height ');
popup.location = popupURL;
}
TripodShowPopup();
// -->
</script>\n";
}
Lure Of Chaos 12.08.2010 13:51 # −1