Jump to content

afdw

User
  • Posts

    1,216
  • Joined

  • Last visited

  • Days Won

    22

Community Answers

  1. afdw's post in Почему окно alert не выдаёт JS? was marked as the answer   
    http://jsfiddle.net/wfvg8gnj/7/
  2. afdw's post in Как создать иконки для визуальных вкладок ipad? was marked as the answer   
    16 строка не закрыта, поэтому и не работает.

    И по "/apple-touch-icon.png" 404.

    Нужно не "/apple-touch-icon.png", а "/CI/apple-touch-icon.png" тогда.

    И иконка должна быть 512x512, а не 152x152.
  3. afdw's post in Как поставить картину на значок вкладки в браузере? was marked as the answer   
    Почитайте про favicon.ico.
  4. afdw's post in Предзагрузка массива изображений was marked as the answer   
    https://jsfiddle.net/tdsw6z5w/3/
  5. afdw's post in Меняем класс у элемента was marked as the answer   
    $('[class^="categories-show-"]').click(function() { if($(this).hasClass("categories-show-in")) { $(this).removeClass("categories-show-in"); $(this).addClass("categories-show-out"); } else { $(this).removeClass("categories-show-out"); $(this).addClass("categories-show-in"); }});Как-то так.
  6. afdw's post in Возможно ли реализовать подобное на javascript ? was marked as the answer   
    Да там вообще ничего делать не надо. Только заменить картинки и убрать надпись в HTML. Если понадобятся те кнопки, которые на сайте, реализовать помогу.
  7. afdw's post in Добавить в калькулятор доставки переменную was marked as the answer   
    http://jsfiddle.net/5L86tt3b/5/
  8. afdw's post in JS: вставка генерируемого контента в любое место документа was marked as the answer   
    var script = document.createElement("script");
    script.src = "http://.../";
    document.querySelector("body > div").appendChild(script);

  9. afdw's post in Изменить класс мышкой, а в остальным убрать класс active was marked as the answer   
    toggleClass?
  10. afdw's post in Найти подходящий элемент was marked as the answer   
    fieldset
  11. afdw's post in PHP. Инвалидный аргумент was marked as the answer   
    Так делать не надо. " обозначает строку только в литерале. А $a[0] - и так строка. Уберите добавление кавычек.
  12. afdw's post in получить get-параметр после перезагрузки страницы was marked as the answer   
    Fixed.
  13. afdw's post in Вывод нескольких результатов вычисления скрипта. was marked as the answer   
    Вероятно потому, что все три значения равны: http://jsfiddle.net/3ukpo1zc/1/
  14. afdw's post in Помогите сделать слайдер аля аккордион was marked as the answer   
    http://jsfiddle.net/701Lmnrr/
  15. afdw's post in Нужно настроить корзину в магазине. was marked as the answer   
    http://jsfiddle.net/sf5c0yba/
  16. afdw's post in Сохранение исходного кода. was marked as the answer   
    Так не надо сразу отправлять! Отправьте на Content Script так:
    chrome.extension.sendMessage({code: document.body.innerHTML});И примите на background так:
    chrome.extension.onMessage.addListener(function(request){ // здесь отправляете на сервер. Код в request.code});
  17. afdw's post in Текст в форме was marked as the answer   
    Вот. Понажимайте на 1, 2, 3, 4.
  18. afdw's post in как в css при наведении на картинку плавно менять размер was marked as the answer   
    http://jsfiddle.net/mwu1f1mc/
  19. afdw's post in Кнопка с углом was marked as the answer   
    Дайте код.
  20. afdw's post in Засечь время от блура с одного блока и до клика на другой was marked as the answer   
    http://jsfiddle.net/ka25rdh3/1/
  21. afdw's post in Проблема с переключателями звука на видео-фоне. was marked as the answer   
    if (video.volume=1) {Заменить на
    if (video.volume==1) {
  22. afdw's post in Поиск на Яндекс was marked as the answer   
    Вот код нужной вам формы:
    <form action="http://yandex.ru/search" method="GET"> <input name="text" placeholder="Поиск..."/> <button>Искать</button></form>
  23. afdw's post in Подскажите нужный синтаксис, плз was marked as the answer   
    Нет, только в одном блоке. Главная проблема этих вкладок - жёсткая разметка HTML.
  24. afdw's post in Радиальный градиент уходящий в прозрачность was marked as the answer   
    http://jsfiddle.net/m1wp1jbm/
  25. afdw's post in Вопрос про псевдоэлементы was marked as the answer   
    http://jsfiddle.net/x38nhabf/3/

    http://jsfiddle.net/x38nhabf/4/

    Посмотрите вторую ссылку.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy