Skip to content

Instantly share code, notes, and snippets.

@msroot
Created May 22, 2012 14:10
Show Gist options
  • Select an option

  • Save msroot/2769320 to your computer and use it in GitHub Desktop.

Select an option

Save msroot/2769320 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>UJS Example</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$("#alert").click(function() {
alert(this.getAttribute("data-message"));
return false;
})
})
</script>
</head>
<body>
<h1><a href="#" id="alert" data-message="Hello UJS!">Click Here</a></h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment