Last active
August 29, 2015 14:01
-
-
Save linkmckinney/3efacf18e67416211ea5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My Updated DOM</title> | |
<meta name="description" content="" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
<!-- Optional theme --> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css"> | |
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> | |
<!-- | |
<link rel="stylesheet" href="default.css" /> | |
<script src="js/jquery.min.js"></script> | |
--> | |
<!--[if lt IE 8]> | |
<![endif]--> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="panel panel-default"> | |
<div class="panel-heading"> | |
Product Comparison | |
</div> | |
<div class="panel-body"> | |
<div class="media-list"> | |
<div class="media" data-price="$249.99"> | |
<a class="pull-left" href="#"> | |
<img class="media-object thumbnail" src="http://www.placehold.it/128x128" width="128" height="128"> | |
</a> | |
<div class="media-body"> | |
<h4>Logitech - Harmony Ultimate One 15-Device Universal Remote</h4> | |
<ul> | |
<li>Model: 915-000224</li> | |
<li>SKU: 3721047</li> | |
<li>Click to see price</li> | |
</ul> | |
</div> | |
</div> | |
<div class="media" data-price="$79.99"> | |
<a class="pull-left" href="#"> | |
<img class="media-object thumbnail" src="http://www.placehold.it/128x128" width="128" height="128"> | |
</a> | |
<div class="media-body"> | |
<h4>Logitech - Harmony 650 8-Device Universal Remote</h4> | |
<ul> | |
<li>Model: 915-000159</li> | |
<li>SKU: 9837565</li> | |
<li>Click to see price</li> | |
</ul> | |
</div> | |
</div> | |
<div class="media" data-price="$349.99"> | |
<a class="pull-left" href="#"> | |
<img class="media-object thumbnail" src="http://www.placehold.it/128x128" width="128" height="128"> | |
</a> | |
<div class="media-body"> | |
<h4>Logitech - Harmony Ultimate 15-Device Remote</h4> | |
<ul> | |
<li>Model: 915-000201</li> | |
<li>SKU: 8575048</li> | |
<li>Click to see price</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Latest compiled and minified JavaScript --> | |
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script> | |
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> | |
<script> | |
$(document).ready(function(){ | |
$(".media-body").find("li:last").on("click", function(){ | |
var price = $(this).closest(".media").data('price'); | |
$(this).text(price); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment