Skip to content

Instantly share code, notes, and snippets.

@honorlin
Created September 20, 2015 14:55
Show Gist options
  • Save honorlin/14e5495372f9a46dc08a to your computer and use it in GitHub Desktop.
Save honorlin/14e5495372f9a46dc08a to your computer and use it in GitHub Desktop.
khfa-1
<!doctype html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(".btn0").click(function(){
if ($("#h3-0").html().indexOf("index") < 0) {
$("#h3-0").html(function(m,n){
return "index" + m + ":" + n
})
}
})//end btn0
})//end ready
</script>
</head>
<body>
<h3 id = "h3-0">try me</h3>
<button class = "btn0" type = "button">click to change text above</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment