• Подставить "/" после двух символов, как?

    @pw0ned Автор вопроса
    пробовал, теперь дальше символа "/" не позволяет писать что либо
  • Как сделать переход к следующему полю при заполнении предыдущего?

    @pw0ned Автор вопроса
    xmoonlight,
    function nextJump1(x) {
    	if (x.value.length == 1) {
    		x.value = "";
    		do {
    			x = x.nextSibling;
    		}
    		while (x && !(/text/.test(x.type)));
    		if (x && /text/.test(x.type)) {
    			
    			$(x).select();
    		}
    	}
    }


    onkeyup="nextJump1(this);"

    Но в этом случае затрагивает только идующие один за другим поля где не присутствует disabled, к примеру с 1 на 5 не перескакивает...
  • Как сделать переход к следующему полю при заполнении предыдущего?

    @pw0ned Автор вопроса
    xmoonlight,

    <div class="pass" style="    display: inline-block; line-height: 2"> 
    
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="1">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="2">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="3">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="4">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="5">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="6">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="7">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="8">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="9">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="10">
    
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="11">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="12">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="13">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="14">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="15">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="16">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; height: 25px; text-align: center; display: inline; border-radius: 0px;" maxlength="1" placeholder="17">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="18">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="19">
    <input type="text" style="width: 25px; padding: 10px 0px 10px 0px; background: #b7ebf1; border: 1px solid #b7ebf1; height: 25px; text-align: center; display: inline; border-radius: 0px;" disabled="" placeholder="20">
    
    
    </div>
  • HTTP ERROR 500, в чём может быть проблема?

    @pw0ned Автор вопроса
    Дмитрий, точно, все, исправил)
    спасибо большое)
  • Создать массив/лист регулярных выражений?

    @pw0ned Автор вопроса
    Вопрос закрыт. Разобрался сам)
    Хорошего вечера)
  • Ускорить обработку файла?

    @pw0ned Автор вопроса
    спасибо большое, теперь все понял )
  • Ускорить обработку файла?

    @pw0ned Автор вопроса
    longclaps, часть мыла до знака "_"

    пример:

    odin_dva@mail.ru:password

    в варианте с заменой password должно заменить на "odin"
  • Ускорить обработку файла?

    @pw0ned Автор вопроса
    sim3x, да, я понимаю, именно эта по показателям затормаживает. В какую сторону копать? каким методом файл открывать и обрабатывать ?
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    Виктор К,
    <?php
    
    require_once 'admin/connection.php';
    
    $result = mysql_query('SELECT * FROM time WHERE 1');
    $row = mysql_fetch_assoc($result);
    $date= $row['time'];
    
    ?>
    
    
                <span style="font-size: 16px;"><b>Ends in:</b>&nbsp <span id="target" style="font-size: 18px;"></span></span> 
                    <br><br>
                 <span style="font-size: 16px;"><b>You Save:</b>&nbsp <span style="font-size: 16px; color: #B12704;">$125.00 (25%)</span></span> 
            
          
    
        <script>
    var target_date = new Date("2019-08-06").getTime(); // установить дату обратного отсчета из php
    var days, hours, minutes, seconds; // переменные для единиц времени
     
    var countdown = document.getElementById("target");
     
    setInterval(function () { getCountdown(); }, 1000);
     
    function getCountdown(){
     
        var current_date = new Date().getTime();
        var seconds_left = (target_date - current_date) / 1000;
     
        days = pad( parseInt(seconds_left / 86400) );
        seconds_left = seconds_left % 86400;
       console.log(seconds_left);
        hours = pad( parseInt(seconds_left / 3600) );
        seconds_left = seconds_left % 3600;
               
        minutes = pad( parseInt(seconds_left / 60) );
        seconds = pad( parseInt( seconds_left % 60 ) );
     
    
        countdown.innerHTML = "<span>д:" + days + "</span> - <span>ч:" + hours + "</span> - <span>м:" + minutes + "</span> - <span>с:" + seconds + "</span>"; 
    }
     
    function pad(n) {
        return (n < 10 ? '0' : '') + n;
    }
    </script>
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    Виктор К, до сих пор не разобрался, видимо мы не так один одного поняли)
    сам вывод даты с БД я сделать могу, дело в том что JS не делает обратного отсчета (
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    да, все именно так.
    у меня проблема в том сейчас, как это значение с БД передать в JS, посредством пхп я получаю свою нужную дату с таблицы

    <?php
    
    require_once 'admin/connection.php';
    
    $result = mysql_query('SELECT * FROM time WHERE 1');
    $row = mysql_fetch_assoc($result);
    $count = $row['time'];
    
    echo $count;
    
    ?>


    а вот на стороне JS, на примере того кода что ты скинул, я не знаю как сделать её отображение на странице :(
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    ProjectSoft,
    <?php
    
    require_once 'admin/connection.php';
    
    $result = mysql_query('SELECT * FROM time WHERE 1');
    $row = mysql_fetch_assoc($result);
    $count = $row['time'];
    
    ?>
    
    <script>
    
    // Set the date we're counting down to
    var countDownDate = <?php echo $count; ?>;
    //var countDownDate = new Date("November 5, 2020 15:37:25").getTime();
    
    // Update the count down every 1 second
    var x = setInterval(function() {
    
      // Get today's date and time
      var now = new Date().getTime();
        
      // Find the distance between now and the count down date
      var distance = countDownDate - now;
        
      // Time calculations for days, hours, minutes and seconds
      var days = Math.floor(distance / (1000 * 60 * 60 * 24));
      var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
      var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
      var seconds = Math.floor((distance % (1000 * 60)) / 1000);
        
      // Output the result in an element with id="demo"
      document.getElementById("demo").innerHTML = minutes + "m " + seconds + "s ";
        
      // If the count down is over, write some text 
      if (distance < 0) {
        clearInterval(x);
        document.getElementById("demo").innerHTML = "EXPIRED";
      }
    }, 1000);
    </script>


    не правильно? дату получаю с бд когда делаю echo в php, но в js не воркает
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    ProjectSoft, видимо я что-то не понимаю :D
  • Таймер обратного отсчета, дата с БД?

    @pw0ned Автор вопроса
    ProjectSoft, это я понимаю как сделать, но в JS как реализовать чтобы эта переменная с php читалась?
  • Как складывать два числа без задействия кнопок?

    @pw0ned Автор вопроса
    именно то что нужно, спасибо большое
  • Как уменьшать каждую минуту число?

    @pw0ned Автор вопроса
    спасибо большое)
  • Отклики - это что?

    @pw0ned Автор вопроса
    понял, принял)
    благодарю)
  • Как убрать лишнее пустое место на странице?

    @pw0ned Автор вопроса
    ухты, действительно. Спасибо огромное
  • Расширяются блоки при изменении масштаба?

    @pw0ned Автор вопроса
    теперь сьезжает влево