1. Список говнокодов пользователя Connor

    Всего: 6

  2. PHP / Говнокод #12118

    +45

    1. 1
    2. 2
    if (!isset($_POST['searchText'])) $_POST['searchText'] = $_GET['searchText'];
    if (!isset($_POST['by'])) $_POST['by'] = $_GET['by'];

    Connor, 13 Ноября 2012

    Комментарии (1)
  3. JavaScript / Говнокод #8018

    +157

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    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;
    }

    Connor, 28 Сентября 2011

    Комментарии (13)
  4. JavaScript / Говнокод #8017

    +160

    1. 1
    2. 2
    3. 3
    var messageDiv = document.getElementById("information-dialog");
    $(messageDiv).html(html);
    messageDiv.style.display = "block";

    Connor, 28 Сентября 2011

    Комментарии (12)
  5. JavaScript / Говнокод #7782

    +159

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    $("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()
    	}
    })

    Connor, 06 Сентября 2011

    Комментарии (4)
  6. JavaScript / Говнокод #7751

    +157

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    $(".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 тру

    Connor, 02 Сентября 2011

    Комментарии (4)
  7. JavaScript / Говнокод #7700

    +169

    1. 1
    if (!document.getElementById) return;

    Официальный сайт города Сочи

    Connor, 30 Августа 2011

    Комментарии (20)