Five bedrooms, three full baths and 3,702 square feet of living space.

Extra-tall double-door entry opens to an inviting and spacious foyer. Formal living and dining rooms featuring see through fireplace.

Large gourmet kitchen with granite countertops, stainless steel appliances with double ovens. Arrow shaped center island, huge, walk in pantry and lots of cabinets for storage. Large eating area off the kitchen for the family to enjoy meals together.

The front bedroom with full bathroom just outside the door. Huge family room with recessed entertainment area complete with recessed lighting and ceiling fan. The huge master suite features a soaker tub, large shower, walk-in closet and an additional over-sized walk-in closet. The master bath features split sinks with granite countertops. 3 large, secondary bedrooms and large bathroom that is great for kids to share.

Also includes: 3 car garage, high ceilings throughout, wired for spa in backyard, dual pane windows, new tile and carpet on bottom floor and large, upstairs laundry room. Nicely landscaped backyard with the best views in the Temescal Valley.

Features

  • Luxurious sized master suite
  • Oversized walk-in closet
  • Frameless Beech cabinetry with concealed hinges
  • Elegant slab white quartz countertops with large backsplash
  • Dual china sinks with Moen faucets
  • Clear frameless shower enclosures
<div id="example-container">
	<img src="img/coded-homes-logo-sm.png"
             class="img-responsive" />
	<img src="img/home.jpg"
             class="thumbnail img-responsive push-down-top" />
	<section class="description">
		<p class="h5">Five bedrooms, three full baths and 3,702 square feet of living space.</p>
		<p>Extra-tall double-door entry opens to an inviting and spacious foyer. Formal living and dining rooms featuring see through fireplace.</p>
		<p>Large gourmet kitchen with granite countertops, stainless steel appliances with double ovens. Arrow shaped center island, huge, walk in pantry and lots of cabinets for storage. Large eating area off the kitchen for the family to enjoy meals together.</p> 
		<p>The front bedroom with full bathroom just outside the door. Huge family room with recessed entertainment area complete with recessed lighting and ceiling fan. The huge master suite features a soaker tub, large shower, walk-in closet and an additional over-sized walk-in closet. The master bath features split sinks with granite countertops. 3 large, secondary bedrooms and large bathroom that is great for kids to share.</p>
		<p>Also includes: 3 car garage, high ceilings throughout, wired for spa in backyard, dual pane windows, new tile and carpet on bottom floor and large, upstairs laundry room. Nicely landscaped backyard with the best views in the Temescal Valley.</p>
	</section>
	<h2 class="h4">Features</h2>
	<ul>
		<li class="feature">Luxurious sized master suite</li>
		<li class="feature">Oversized walk-in closet</li>
		<li class="feature">Frameless Beech cabinetry with concealed hinges</li>
		<li class="feature">Elegant slab white quartz countertops with large backsplash</li>
		<li class="feature">Dual china sinks with Moen faucets</li>
		<li class="feature">Clear frameless shower enclosures</li>
	</ul>
</div>
/* none */
document.getElementsByClassName('img-responsive')
document.querySelector('.img-responsive')
document.querySelector('#example-container li:first-child')
document.querySelectorAll('.img-responsive')
var container = document.getElementById('example-container');
container.querySelectorAll('.img-responsive')
var items = document.querySelectorAll('#example-container li');
items.toString()
var items = document.querySelectorAll('#example-container li');

for (var i = 0, len = items.length; i < len; i++) {
	console.log(items[i].innerText);
}
var forEach = Array.prototype.forEach;
var items = document.querySelectorAll('#example-container li');

forEach.call(items, function(item){
console.log(item.innerText);
});
var list = document.querySelector('#example-container ul');
var items = document.getElementsByClassName('feature');

console.log(items.length);

var newItem = document.createElement('LI');
newItem.className = 'feature';
newItem.innerText = 'new live feature';
list.appendChild(newItem);

console.log(items.length);
var list = document.querySelector('#example-container ul');
var items = document.querySelectorAll('#example-container li');

console.log(items.length);

var newItem = document.createElement('LI');
newItem.className = 'feature';
newItem.innerText = 'new static feature';
list.appendChild(newItem);

console.log(items.length);