]> git.mxchange.org Git - mailer.git/blobdiff - templates/de/html/js/js_surfbar_member_book.tpl
First batch of removal of the headers needed for revision-functions.php
[mailer.git] / templates / de / html / js / js_surfbar_member_book.tpl
index 8ec8ffcc912f5c8bfacee7c224cdf9916bed5eab..4f1d1f4660c373d6334ab0c63c3bcc707ea94456 100644 (file)
@@ -1,13 +1,8 @@
 /**
  * JavaScript for ext-surfbar - member booking script
  * --------------------------------------------------------------------
- * $Revision::                                                        $
- * $Date::                                                            $
- * $Tag:: 0.2.1-FINAL                                                 $
- * $Author::                                                          $
- * --------------------------------------------------------------------
  * Copyright (c) 2003 - 2009 by Roland Haeder
- * Copyright (c) 2009 - 2012 by Mailer Developer Team
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team
  * For more information visit: http://mxchange.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -97,3 +92,32 @@ function resetForm () {
 
 focusLimitedNo();
 document.getElementById('url').focus();
+
+// Register all event listeners
+$('#book').submit(function() {
+       return submitForm();
+});
+
+$('#reset').click(function() {
+       return resetForm();
+});
+
+$('#limit').click(function() {
+       return focusLimit();
+});
+
+$('#limit').blur(function() {
+       return blurLimit();
+});
+
+$('#limit').change(function() {
+       return changeLimited();
+});
+
+$('#limited_no').click(function() {
+       return focusLimitedNo();
+});
+
+$('#limited_yes').click(function() {
+       return focusLimitedYes();
+});