• Home
  • Books
Programmer's blog
Expert web-developer PHP (ZCE) / Python JavaScript / HTML / CSS

Language:

  • English
  • Русский

Categories

  • Administration
  • Alloy
  • Appcelerator
  • Backbone
  • CSS
  • Design
  • Javascript
  • JQuery
  • Kohana
  • List
  • Mac OS X
  • Magento
  • MySQL
  • OS
  • Other
  • PHP
  • Python
  • Regular Expressions
  • Ruby on Rails
  • Web design
  • Wordpress
Tweets by @yperevoznikov
 

Menu

Skip to content
  • Home
  • Books

Tags

amazon analog appcelerator code snippets css dom elastic-beanstalk Examples facebook Flat design github guide js js-lib mobile mobile app overview PHP php-lib problem rapid code ruby script service settings syntax test tutorial Video
Powered by Verbosa & WordPress.

Tag: css

Change css style z-index in Javascript

Tuesday July 16th, 2013 CSS / Javascript0 Comments

If you don’t want to use a Javascript framework for some reason feel free to use native syntax of the language to change css style: var el = document.getElementById(’element-id’); var zIndex = el.style.zIndex; // get value el.style.zIndex = 5; // set value Anyway if you have linked jQuery in the …

Continue reading
 code snippets / css / dom / js