Skip to content

Instantly share code, notes, and snippets.

@a-yasui
Created June 12, 2012 16:42
Show Gist options
  • Select an option

  • Save a-yasui/2918627 to your computer and use it in GitHub Desktop.

Select an option

Save a-yasui/2918627 to your computer and use it in GitHub Desktop.
mogeta
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
test1
<div id="test"></div>
</body>
<script><!--
$(function(){
var tes = $("<div><p class='more'></div>");
$('.more', tes).html("<span style='color:red;'>abc</span>");
console.log("test: " + tes.html());
$("#test").html(tes);
});
//--></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment