Jump to content

potato

Newbie
  • Posts

    12
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by potato

  1. var button = document.getElementById('btn') /* что это такое? где точка с запятой?*/ ` function my_func() { var res = document.getElementById('manual_select').value; console.log(res); if (res !== '0') { document.getElementById('select1').removeAttribute('disabled'); document.getElementById('select2').removeAttribute('disabled').removeAttribute('disabled'); /* .removeAttrubute(blabla) два раза не надо */ } else { document.getElementById('select1').setAttribute('disabled', 'disabled', true); document.getElementById('select2').setAttribute('disabled', 'disabled', true); } }
  2. Preturn true; что ето такое?
  3. исправь это: body { background:url('images/Fon.png') #373e45 no-repeat 50% 0; word-wrap: break-word; } на это: body { background:url('../images/Fon.png') #373e45 no-repeat 50% 0; word-wrap: break-word; }
  4. http://htmlbook.ru/c...ground-position вместо top right 8px 0 8px
  5. у меня нормально работает до 8 версии. а вот в 7 версии они в столбик, но все равно по центру. .parent { text-align: center; } .this-is-inline-block { display: inline-block; background: brown; border: solid 1px black; width: 100px; height: 50px; }
  6. ковычки упустил
  7. html, css, js все это хранится в папке templates/название_шаблона/
  8. не о чем.

  9. var b = $(document.body); b.on('click', function(){ container.toggle(); });
  10. примерно так: <!doctype html> <html lang="en-us"> <head> <title>Your title</title> <meta charset="utf-8"> <style> #container { width: 500px; margin: 0 auto; } img { display: block; margin: 0 auto; border: solid 2px black; } </style> </head> <body> <div id="container"> <img src="http://lorempixel.com/output/food-h-c-463-480-5.jpg" class="my_image"> </div> <script> var image = document.getElementsByClassName('my_image')[0]; if(image.width < 600) { image.className = "smaller_than_600px"; } alert("my_image new class name is: " + image.className); </script> </body> </html>
×
×
  • 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