- 1
- 2
if (!isset($_POST['searchText'])) $_POST['searchText'] = $_GET['searchText'];
if (!isset($_POST['by'])) $_POST['by'] = $_GET['by'];
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 6
+45
if (!isset($_POST['searchText'])) $_POST['searchText'] = $_GET['searchText'];
if (!isset($_POST['by'])) $_POST['by'] = $_GET['by'];
+157
function fakePassword() {
$(":input:password").each(
function(i) {
$("#" + this.id + "-hidden-password").attr("name", this.name);
$("#" + this.id + "-hidden-password").attr("value", this.value);
$(this).removeAttr("value");
$(this).removeAttr("name");
}
);
return true;
}
+160
var messageDiv = document.getElementById("information-dialog");
$(messageDiv).html(html);
messageDiv.style.display = "block";
+159
$("html > body a#order_check").click(function(){
if($("html > body a#order_check").is(".active") && !$("html > body div#order_check_b").is(":hidden")){
$("#order_check").removeClass("active")
$("#order_check_b").hide()
}
if(!$("html > body a#order_check").is(".active") && $("html > body div#order_check_b").is(":hidden")){
$("html > body #order_check").addClass("active")
$("html > body #order_check_b").show()
}
})
+157
$(".regions_table").find("tbody:nth-child(even) tr").attr("class","regions_blue")
$(".regions_table").find("tbody:nth-child(odd) tr").attr("class","regions_grey")
$(".regions_table tbody tr:nth-child(even)").addClass("_dark")
$(".regions_table tr[class='regions_grey _dark']").attr("class", "regions_grey_dark")
$(".regions_table tr[class='regions_blue _dark']").attr("class", "regions_blue_dark")
Строчки 3-5 тру
+169
if (!document.getElementById) return;
Официальный сайт города Сочи