dimanche 2 juillet 2017

how to link blade.php file jquery scripts in app.blade.php in Laravel

need link following blade file jquery script with app.blade.php file

 <script src="http://ift.tt/1qRgvOJ"></script>

    <script>
    $(function(){
    $('[name=name]').keyup(function(){
    if($(this).val()){
    $('div.somename').show();
    }
    else{
    $('div.somename').hide();
    }
    });

    });
    </script>

how can I link above jquery scripts with app.blade.php file?



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire