

Quick and easy explanation of the jQuery command replace. The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp,…
Sometimes you have some input fields you want to show to the end user but not allow them to edit. For example a profile page where they can update their…
Sometimes you may have form elements that you need to changed based on other input. For example I have two selects on my page. The first one if the primary…
This is a basic example of how to dynamically add new options to your select drop down without reloading the page. I’m not saving these in the database, but it’s…
This will be a walk-through on how to create a submit form that checks the database to make sure the username is not taken. If it is taken it will…
How can I just select the value of the data-date attribute. I need to get 2016-02-14 into a jQuery variable. <td class=”fc-day fc-widget-content fc-sun fc-past” data-date=”2016-02-14″> You can select it…