-
Feb- 2020 -1 FebruaryJavaScript
Reverse text in Vue js
To let users interact with your app, we can use the v-on directive to attach event listeners that invoke methods on our…
Read More » -
1 FebruaryJavaScript
jQuery Toggle
<script> $(document).ready(function(){ $("button").click(function(){ $("p").toggle(); }); }); </script> This is a paragraph. Toggle between hide() and show()
Read More » -
1 FebruaryJavaScript
Get checkbox value in jQuery
To get the checkbox value in jquery you have written some scripts like below. $("input[type='checkbox']").val(); Or if you have set…
Read More » -
Jan- 2020 -31 JanuaryLaravel
Class Form not found in Laravel 5
Form isn’t included in laravel 5.0 as it was on 4.0, steps to include it: Begin by installing laravelcollective/html package through Composer. Edit your project’s composer.json file to require: "require":…
Read More » -
31 JanuaryjQuery
Prevent Space in the input field
Html input tag <input type='text' name="users" /> Simply add this line of code into your HTML pages scripts $('input').keypress(function( e…
Read More » -
26 JanuaryPHP
How to show the current date and time in PHP?
Php has a pre-defined function for date and time that is “date”, <?php $currentDateTime = date('Y-m-d H:i:s'); echo "Your current…
Read More » -
25 JanuaryPHP
PHP Syntax and basic program.
Basic PHP Syntax A PHP script can be placed anywhere in the document. A PHP script starts with <?php and ends with ?>:…
Read More »