Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <apex:component>
  2. <script id="View" type="text/template">
  3. <button type="button" class="btn btn-primary myBtn">Click</button>
  4. </script>
  5. </apex:component>
  6.  
  7. <apex:component>
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  9. <script>
  10. $(document).ready(function(){
  11. $('#myBtn').click(function () {
  12. alert("Hello")
  13. });
  14. });
  15. </script>
  16. </apex:component>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement