1. JavaScript / Говнокод #2631

    +157.6

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    $('.i18n').each(function() {
    
    	//здесь заменяем для всех i18n на значение поля по умолчанию среди полей его класса
    	$('.' + $(this).attr('id').substr(0, parseInt(($(this).attr('id')).length - <?php echo strlen(c('locale.default')) ?>))).val($('#' + $(this).attr('id').substr(0, parseInt(($(this).attr('id')).length - <?php echo strlen(c('locale.default')) ?>)) + '_<?php echo c('locale.default') ?>').val());
    });

    stereojazz, 18 Февраля 2010

    Комментарии (0)
  2. JavaScript / Говнокод #2629

    +168.1

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    var rus = new String("йцукенгшщзфывапролдячсмитьЙЦУКЕНГШЩЗФЫВАПРОЛДЯЧСМИТЬ");
    var eng = new String("qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM");
    for (var i in rus) {
    	reg = new RegExp(rus[i], 'g');
    	pass = pass.replace(reg, eng[i]);
    }

    Конвертация русских чаров в английские в соответствии с расположением на клаве. Зачем - не суть важно. Регулярки! Десятки их! Полсотни итераций для простой замены русских букв на английские!

    ixth, 17 Февраля 2010

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

    +162.4

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    $(document).ready(function(){
    $("#dialog-a, #dialog-b, #dialog-c, #dialog-d, #dialog-e, #dialog-f, #dialog-g, #dialog-h, #dialog-i, #dialog-j, #dialog-k, #dialog-l, #dialog-m, #dialog-n, #dialog-o, #dialog-p, #dialog-q, #dialog-r, #dialog-s, #dialog-t, #dialog-u, #dialog-v, #dialog-w, #dialog-x, #dialog-y, #dialog-z").dialog(
    {
    	autoOpen: false,
    	buttons: { 'OK': function() { $(this).dialog("close"); } },
    	modal: true,
    	width: 200
    });
    	$("#button-a-dialog").click(function (event) {
    		$("#dialog-a").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-b-dialog").click(function (event) {
    		$("#dialog-b").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-c-dialog").click(function (event) {
    		$("#dialog-c").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-d-dialog").click(function (event) {
    		$("#dialog-d").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-e-dialog").click(function (event) {
    		$("#dialog-e").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-f-dialog").click(function (event) {
    		$("#dialog-f").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-g-dialog").click(function (event) {
    		$("#dialog-g").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-h-dialog").click(function (event) {
    		$("#dialog-h").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-i-dialog").click(function (event) {
    		$("#dialog-i").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-j-dialog").click(function (event) {
    		$("#dialog-j").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-k-dialog").click(function (event) {
    		$("#dialog-k").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-l-dialog").click(function (event) {
    		$("#dialog-l").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-m-dialog").click(function (event) {
    		$("#dialog-m").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-n-dialog").click(function (event) {
    		$("#dialog-n").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-o-dialog").click(function (event) {
    		$("#dialog-o").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-p-dialog").click(function (event) {
    		$("#dialog-p").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-q-dialog").click(function (event) {
    		$("#dialog-q").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-r-dialog").click(function (event) {
    		$("#dialog-r").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-s-dialog").click(function (event) {
    		$("#dialog-s").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-t-dialog").click(function (event) {
    		$("#dialog-t").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-u-dialog").click(function (event) {
    		$("#dialog-u").dialog('open');
    		event.preventDefault();
    	});
    	$("#button-v-dialog").click(function (event) {
    		$("#dialog-v").dialog('open');

    pasha, 16 Февраля 2010

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

    +160.6

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    // всё ещё Wakaba Extension http://userscripts.org/scripts/review/23705
    function optionValue(optionName)
    {
    	var optionsString = (doOptionsPanel) ? get_cookie('wkExtOptions') : '';
    	if (optionsString == '')
    	{
    		switch (optionName)
    		{
    			case 'doQuickReply':
    				return doQuickReply;
    				break;
    			case 'doThreadExpansion':
    				return doThreadExpansion;
    				break;
    			case 'doPostExpansion':
    				return doPostExpansion;
    				break;
    /*... еще 12 условий ... */
    			default:
    				return 0;
    		}
    	}
    	else
    	{
    		var optionsArray = optionsString.split(/,/);
    		switch (optionName)
    		{
    			case 'doQuickReply':
    				return parseInt(optionsArray[0]); // parseInt ensures that 0 is handled as an integer. lol, weak types
    				break;
    			case 'doThreadExpansion':
    				return parseInt(optionsArray[1]);
    				break;
    			case 'doPostExpansion':
    				return parseInt(optionsArray[2]);
    				break;
    /*... еще 12 условий ... */
    			default:
    				return 0;
    		}
    	}
    }

    Естественно, я бы сделал это хэшами.
    Но кому-то код, что выше понятнее...
    function optionValue(optionName)
    {
    var optionsString = (doOptionsPanel) ? get_cookie('wkExtOptions') : '';
    if(!optionsString){
    return options[optionName]; // не установлена опция - возвращается undefined
    }else{
    return defaultOptions[optionName];
    }
    }

    m1el, 14 Февраля 2010

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

    +170.3

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    // http://userscripts.org/scripts/review/23705
    		var replyBoxContentPostAreaTableSubjectRowRightColumnSubmitButton = document.createElement("input");
    
    		replyBoxContentPostAreaTableSubjectRowRightColumnSubmitButton.setAttribute("type", "submit");
    
    		replyBoxContentPostAreaTableSubjectRowRightColumnSubmitButton.setAttribute("value", "Submit");
    
    		replyBoxContentPostAreaTableSubjectRowRightColumn.appendChild(replyBoxContentPostAreaTableSubjectRowRightColumnSubmitButton);
    
    		replyBoxContentPostAreaTableSubjectRow.appendChild(replyBoxContentPostAreaTableSubjectRowLeftColumn);
    
    		replyBoxContentPostAreaTableSubjectRow.appendChild(replyBoxContentPostAreaTableSubjectRowRightColumn);
    
    		replyBoxContentPostAreaTBody.appendChild(replyBoxContentPostAreaTableSubjectRow);

    Грустно. Очень грустно.

    m1el, 14 Февраля 2010

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

    +153.6

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    var xmlhttp
    var dlid;
    
    function showHint(id)
    {
    xmlhttp=GetXmlHttpObject();
    if (xmlhttp==null)
      {
      alert ("Your browser does not support XMLHTTP!");
      return;
      }
    dlid="dl"+id;
    var url="download.php";
    xmlhttp.onreadystatechange=stateChanged;
    xmlhttp.open("GET",url+"?update="+id,false);
    xmlhttp.send(null);
    window.location=url+"?id="+id;
    }
    
    function stateChanged()
    {
    if (xmlhttp.readyState==4)
      {
      document.getElementById(dlid).innerHTML=xmlhttp.responseText;
      }
    }
    
    function GetXmlHttpObject()
    {
    if (window.XMLHttpRequest)
      {
      // code for IE7+, Firefox, Chrome, Opera, Safari
      return new XMLHttpRequest();
      }
    if (window.ActiveXObject)
      {
      // code for IE6, IE5
      return new ActiveXObject("Microsoft.XMLHTTP");
      }
    return null;
    }

    Разбираюсь с AJAX

    ko4epblzka, 12 Февраля 2010

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

    +153

    1. 1
    for (var i=0; i<$('.tr_t').length; i+=2) $('.tr_t:eq(' + i + ')').css('color', '#CCCCCC');

    JDVU, 11 Февраля 2010

    Комментарии (8)
  8. JavaScript / Говнокод #2595

    +151.1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    dA.cookie = {}
    dA.cookie.add = function (name, value, days) {
        if (days) {
            var date = new Date();
            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
            var expires = "; expires=" + date.toGMTString();
        }
        else var expires = "";
        document.cookie = name + "=" + value + expires + "; path=/";
    }
    dA.cookie.read = function (name) {
        var nameEQ = name + "=";
        var ca = document.cookie.split(';');
        for (var i = 0; i < ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == ' ') c = c.substring(1, c.length);
            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }
        return null;
    }
    dA.cookie.remove = function (name) {
        dA.cookie.add(name, "", -1);
    }

    JDVU, 11 Февраля 2010

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

    +162.9

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    // Реализованно не верно, надо узнать как разобраться.
    $.prototype.deleteClass = function(name) // Удаляет один из классов элемента
    {                                     	 // Пример:$('closeSpan').deleteClass('dialogTitleCloseSpanOver');
    
     this.setClass( (this.className()).replace(" "+name+" ", ' ') );
     this.setClass( (this.className()).replace(""+name+" ", ' ') );
     this.setClass( (this.className()).replace(" "+name+"", ' ') );
    
    return this;
    }

    Я плакалЪ.

    Cr@ZyBoY, 09 Февраля 2010

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

    +176.5

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    e=0.55;
    c=e.toString().split('.')[0];
    k=e.toString().split('.')[1].substr(0, 1);
    r=parseInt(c);
    if (k > 4) r=r+1;

    Округление числа старинным индусским способом

    fuckyounoob, 09 Февраля 2010

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