MrBoBo69

jQuery code to add-- hide and display form

Aug 29th, 2024 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.43 KB | None | 0 0
  1. <script>
  2.     jQuery(document).ready(function($){
  3.         // Change First Option Text in Apply Loan Form
  4.         $(".applyloan-option option:first").text("Please Choose Type of Loan");
  5.        
  6.         // Change the step value for loan amount
  7.         $("#pricipal-total-slide").slider("option", "step", 1000);
  8.     })
  9. </script>
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js" crossorigin="anonymous"></script>
Tags: jQuery
Advertisement
Add Comment
Please, Sign In to add comment