-
+159
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
// is_foreign test
if (firmId && (firmId == 'is_foreign_Y' || firmId == 'is_foreign_N') ) {
var is_foreign_value = firmId.substring(firmId.length-1,firmId.length);
firmId = 0;
if (is_foreign_value && is_foreign_value == 'Y' || is_foreign_value == 'N') {
var is_foreign = web.$('is_foreign');
is_foreign.value = is_foreign_value;
...
} else {
...
}
} else {
var is_foreign = web.$('is_foreign');
is_foreign.value = 0;
}
Код отформатирован для лучшего понимания, было всё в одну колонку.
sapegin,
14 Апреля 2011
-
+158
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
function ShowContent(divId, ajaxIndex, url) {
if (AjaxObjects[ajaxIndex].response != "ok")
{
alert("Неверный пароль");
/*
document.getElementById(divId).innerHTML = AjaxObjects[ajaxIndex].response;
if (enableCache) {
jsCache[url] = AjaxObjects[ajaxIndex].response;
}*/
AjaxObjects[ajaxIndex] = false;
}
else
window.location.href= "Default.aspx";
}
дурацкая функция, ну кто так обозначает сообщение, надо более полно обозначивать в чем причина непереадресации на нужную мне страницу
BlackMonolit,
14 Апреля 2011
-
+156
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
this.resetFunctions = function() {
this.onLoading = function() { };
this.onLoaded = function() { };
this.onInteractive = function() { };
this.onCompletion = function() { };
this.onError = function() { };
this.onFail = function() { };
};
this.reset = function() {
this.resetFunctions();
this.resetData();
};
this.createAJAX = function() {
try {
this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e1) {
try {
this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
this.xmlhttp = null;
}
}
=)нашел с другом на сайте россдневник http://****/FrontPage.aspx можете сами поскать в JS
BlackMonolit,
14 Апреля 2011
-
+160
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
//create a list of rules to block
var blockRules = ["http://example.com/images/*",
"*://example.org/css/*"];
// add them to the content blocker
for (var rule in blockRules) {
opera.extension.urlfilter.block.add(blockRules[rule])
}
Экзампле из официальной документации одного браузера, отчаянно пытающегося прекратить катиться в сраное говно и набрать популярность.
Будет растащено хомячками на копипасту.
И, striker, убери уже этот долбанный trim для leading spaces
bugmenot,
13 Апреля 2011
-
+171
- 1
- 2
- 3
- 4
- 5
var perviy = document.getElementById ('perviy');
var vtoroy = document.getElementById ('vtoroy');
perviy += vtoroy;
vtoroy = perviy - vtoroy;
perviy -= vtoroy;
Меняем элементы местами.
fuckyounoob,
13 Апреля 2011
-
+166
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
for(var i=obj.parentNode.parentNode.childNodes.length;i>=0;i--)
{
if(obj.parentNode.parentNode.childNodes[i]!=undefined)
{
if(obj.parentNode.parentNode.childNodes[i].tagName=="TR")
{
if (obj.parentNode.parentNode.childNodes[i].childNodes[0]!=undefined){
for (var j=obj.parentNode.parentNode.childNodes[i].childNodes.length;j>=0;j--)
{
if(obj.parentNode.parentNode.childNodes[i].childNodes[j]!=undefined){
if(obj.parentNode.parentNode.childNodes[i].childNodes[j].childNodes[0].tagName=="TABLE"){
obj.parentNode.parentNode.childNodes[i].childNodes[j].childNodes[0].childNodes[0].childNodes[0].childNodes[0].attributes.getNamedItem("background").value = "images/category_n.png";
}
}
}
}
}
}
}
Случайно заметил, что на samsung.ru в файрбаг валятся ошибки. Сходил посмотреть и нашел это.
user654321,
13 Апреля 2011
-
+163
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
<?
$url = file_get_contents("url страницы");
$js = "<script";
$endjs = "</script>";
$test = 0;
$i = 1;
while($test == 0)
{
$q = strpos($url, $js);
$q++;
$y = strpos($url,$endjs);
$y++;
$url = substr($url, $q, $y);
if($url == false)
{
$test = 1;
}else{
$i++;
}
}
echo"<br>Удалено скриптов: " .$i. "<br>";
$url = htmlspecialchars("$url", ENT_QUOTES);
echo $url;
?>
программа удаляющую полностью все javascript
BlackMonolit,
13 Апреля 2011
-
+157
- 1
var is_ie = !(navigator.appName.indexOf("Netscape") != -1);
Из недр http://habrahabr.ru/blogs/internet/117202/
ReallyBugMeNot,
12 Апреля 2011
-
+165
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
function securityMode(c_f)
{
var security_mode;
changed = c_f;
hideWep();
document.getElementById("div_security_shared_mode").style.visibility = "hidden";
document.getElementById("div_security_shared_mode").style.display = "none";
document.getElementById("div_wpa").style.visibility = "hidden";
document.getElementById("div_wpa").style.display = "none";
document.getElementById("div_wpa_algorithms").style.visibility = "hidden";
document.getElementById("div_wpa_algorithms").style.display = "none";
document.getElementById("wpa_passphrase").style.visibility = "hidden";
document.getElementById("wpa_passphrase").style.display = "none";
document.getElementById("wpa_key_renewal_interval").style.visibility = "hidden";
document.getElementById("wpa_key_renewal_interval").style.display = "none";
document.getElementById("wpa_PMK_Cache_Period").style.visibility = "hidden";
document.getElementById("wpa_PMK_Cache_Period").style.display = "none";
document.getElementById("wpa_preAuthentication").style.visibility = "hidden";
document.getElementById("wpa_preAuthentication").style.display = "none";
document.security_form.cipher[0].disabled = true;
document.security_form.cipher[1].disabled = true;
document.security_form.cipher[2].disabled = true;
// etc...
}
Китайский говнокод, который пока даже страшно рефакторить.
SadKo,
10 Апреля 2011
-
+169
- 1
- 2
- 3
- 4
- 5
- 6
if (iterr == 0){
iterr = iterr + 1;
id_tm = id;
}else{
iterr = iterr + 1;
}
Работает? Работает. Пусть и дальше работает))
snigavig,
07 Апреля 2011