Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script language="JavaScript" type="text/JavaScript">
- $(document).ready(function(){
- /* Allotment */
- $('#fill').click(function(){ /* ID Button AutoFill */
- $('.targetAll').val(function(){ /* Class Target Textbox Allotment */
- return $('.srcAll').val() /* Class Source Textbox Allotment */
- })
- })
- /* Rate */
- $('#fill').click(function(){
- $('.targetRate').val(function(){
- return $('.srcRate').val()
- })
- })
- /* Open/Close */
- $('#fill').click(function(){
- $('.targetClose').prop('checked', function(){
- return $('.srcClose').is(':checked')
- })
- })
- })
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement