JQuery Submit button does not work Laravel












1














I am trying everything to make my webpage smoother. The thing is, I've tried to make a JQuery submit and now, the button does not do anything when pressed.



Here is my code:



The form:



<form id="myForm">
<div class="author-thumb">
<img src="{{ Auth::user()->getFirstMediaUrl('pps') ? Auth::user()->getFirstMediaUrl('pps') : '/img/ava_10.jpg' }}" width="36" height="36" alt="author">
</div>
<div class="form-group with-icon label-floating is-empty">
<label class="control-label">Share what you are thinking here...</label>
<textarea class="form-control" name="content" id="content" required></textarea>
</div>
<div class="add-options-message">
<a href="#" class="options-message" data-toggle="tooltip" data-placement="top" data-original-title="ADD PHOTOS">
<svg class="olymp-camera-icon" data-toggle="modal" data-target="#update-header-photo"><use xlink:href="icons/icons.svg#olymp-camera-icon"></use></svg>
</a>
<button class="btn btn-primary btn-md-2" id="ajaxSubmit">Post</button>
</div>
</form>


The controller:



public function store(Request $request)
{
$post = new Post();
$post->user_id = Auth::user()->id;
$post->username = Auth::user()->username;
$post->author = Auth::user()->name;
$post->content = $request->content;
$post->save();
return response()->json(['success'=>'Data is successfully added']);
}


The route:



Route::post('/post', [

'uses' => 'PostController@store',

]);


The JQuery:



<script type="text/javascript">

jQuery(document).ready(function(){
jQuery('#ajaxSubmit').click(function(e){
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
jQuery.ajax({
url: "{{ url('/post') }}",
method: 'post',
data: {
content: jQuery('#content').val()
},
success: function(result){
console.log(result);
}});
});
});

</script>


Can someone please help me with this? Please explain to me which part of the code is wrong and what I can do to avoid making the same mistake again. Thanks in advance for your time.










share|improve this question
























  • So what happend in your code you show the code but dont say which part you have error . your page is reloading?
    – sharif854
    Nov 13 '18 at 6:05










  • No, i just click the button and it does nothing. I don’t know where is the error...
    – Daniel Logvin
    Nov 13 '18 at 6:05










  • instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
    – sharif854
    Nov 13 '18 at 6:09










  • F12 on chrome and check XHR request tab for what happen ?
    – Truong Dang
    Nov 13 '18 at 6:10










  • But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
    – Daniel Logvin
    Nov 13 '18 at 6:10
















1














I am trying everything to make my webpage smoother. The thing is, I've tried to make a JQuery submit and now, the button does not do anything when pressed.



Here is my code:



The form:



<form id="myForm">
<div class="author-thumb">
<img src="{{ Auth::user()->getFirstMediaUrl('pps') ? Auth::user()->getFirstMediaUrl('pps') : '/img/ava_10.jpg' }}" width="36" height="36" alt="author">
</div>
<div class="form-group with-icon label-floating is-empty">
<label class="control-label">Share what you are thinking here...</label>
<textarea class="form-control" name="content" id="content" required></textarea>
</div>
<div class="add-options-message">
<a href="#" class="options-message" data-toggle="tooltip" data-placement="top" data-original-title="ADD PHOTOS">
<svg class="olymp-camera-icon" data-toggle="modal" data-target="#update-header-photo"><use xlink:href="icons/icons.svg#olymp-camera-icon"></use></svg>
</a>
<button class="btn btn-primary btn-md-2" id="ajaxSubmit">Post</button>
</div>
</form>


The controller:



public function store(Request $request)
{
$post = new Post();
$post->user_id = Auth::user()->id;
$post->username = Auth::user()->username;
$post->author = Auth::user()->name;
$post->content = $request->content;
$post->save();
return response()->json(['success'=>'Data is successfully added']);
}


The route:



Route::post('/post', [

'uses' => 'PostController@store',

]);


The JQuery:



<script type="text/javascript">

jQuery(document).ready(function(){
jQuery('#ajaxSubmit').click(function(e){
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
jQuery.ajax({
url: "{{ url('/post') }}",
method: 'post',
data: {
content: jQuery('#content').val()
},
success: function(result){
console.log(result);
}});
});
});

</script>


Can someone please help me with this? Please explain to me which part of the code is wrong and what I can do to avoid making the same mistake again. Thanks in advance for your time.










share|improve this question
























  • So what happend in your code you show the code but dont say which part you have error . your page is reloading?
    – sharif854
    Nov 13 '18 at 6:05










  • No, i just click the button and it does nothing. I don’t know where is the error...
    – Daniel Logvin
    Nov 13 '18 at 6:05










  • instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
    – sharif854
    Nov 13 '18 at 6:09










  • F12 on chrome and check XHR request tab for what happen ?
    – Truong Dang
    Nov 13 '18 at 6:10










  • But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
    – Daniel Logvin
    Nov 13 '18 at 6:10














1












1








1







I am trying everything to make my webpage smoother. The thing is, I've tried to make a JQuery submit and now, the button does not do anything when pressed.



Here is my code:



The form:



<form id="myForm">
<div class="author-thumb">
<img src="{{ Auth::user()->getFirstMediaUrl('pps') ? Auth::user()->getFirstMediaUrl('pps') : '/img/ava_10.jpg' }}" width="36" height="36" alt="author">
</div>
<div class="form-group with-icon label-floating is-empty">
<label class="control-label">Share what you are thinking here...</label>
<textarea class="form-control" name="content" id="content" required></textarea>
</div>
<div class="add-options-message">
<a href="#" class="options-message" data-toggle="tooltip" data-placement="top" data-original-title="ADD PHOTOS">
<svg class="olymp-camera-icon" data-toggle="modal" data-target="#update-header-photo"><use xlink:href="icons/icons.svg#olymp-camera-icon"></use></svg>
</a>
<button class="btn btn-primary btn-md-2" id="ajaxSubmit">Post</button>
</div>
</form>


The controller:



public function store(Request $request)
{
$post = new Post();
$post->user_id = Auth::user()->id;
$post->username = Auth::user()->username;
$post->author = Auth::user()->name;
$post->content = $request->content;
$post->save();
return response()->json(['success'=>'Data is successfully added']);
}


The route:



Route::post('/post', [

'uses' => 'PostController@store',

]);


The JQuery:



<script type="text/javascript">

jQuery(document).ready(function(){
jQuery('#ajaxSubmit').click(function(e){
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
jQuery.ajax({
url: "{{ url('/post') }}",
method: 'post',
data: {
content: jQuery('#content').val()
},
success: function(result){
console.log(result);
}});
});
});

</script>


Can someone please help me with this? Please explain to me which part of the code is wrong and what I can do to avoid making the same mistake again. Thanks in advance for your time.










share|improve this question















I am trying everything to make my webpage smoother. The thing is, I've tried to make a JQuery submit and now, the button does not do anything when pressed.



Here is my code:



The form:



<form id="myForm">
<div class="author-thumb">
<img src="{{ Auth::user()->getFirstMediaUrl('pps') ? Auth::user()->getFirstMediaUrl('pps') : '/img/ava_10.jpg' }}" width="36" height="36" alt="author">
</div>
<div class="form-group with-icon label-floating is-empty">
<label class="control-label">Share what you are thinking here...</label>
<textarea class="form-control" name="content" id="content" required></textarea>
</div>
<div class="add-options-message">
<a href="#" class="options-message" data-toggle="tooltip" data-placement="top" data-original-title="ADD PHOTOS">
<svg class="olymp-camera-icon" data-toggle="modal" data-target="#update-header-photo"><use xlink:href="icons/icons.svg#olymp-camera-icon"></use></svg>
</a>
<button class="btn btn-primary btn-md-2" id="ajaxSubmit">Post</button>
</div>
</form>


The controller:



public function store(Request $request)
{
$post = new Post();
$post->user_id = Auth::user()->id;
$post->username = Auth::user()->username;
$post->author = Auth::user()->name;
$post->content = $request->content;
$post->save();
return response()->json(['success'=>'Data is successfully added']);
}


The route:



Route::post('/post', [

'uses' => 'PostController@store',

]);


The JQuery:



<script type="text/javascript">

jQuery(document).ready(function(){
jQuery('#ajaxSubmit').click(function(e){
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
jQuery.ajax({
url: "{{ url('/post') }}",
method: 'post',
data: {
content: jQuery('#content').val()
},
success: function(result){
console.log(result);
}});
});
});

</script>


Can someone please help me with this? Please explain to me which part of the code is wrong and what I can do to avoid making the same mistake again. Thanks in advance for your time.







jquery laravel






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 5:29









Kevin

311




311










asked Nov 13 '18 at 5:20









Daniel Logvin

4311




4311












  • So what happend in your code you show the code but dont say which part you have error . your page is reloading?
    – sharif854
    Nov 13 '18 at 6:05










  • No, i just click the button and it does nothing. I don’t know where is the error...
    – Daniel Logvin
    Nov 13 '18 at 6:05










  • instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
    – sharif854
    Nov 13 '18 at 6:09










  • F12 on chrome and check XHR request tab for what happen ?
    – Truong Dang
    Nov 13 '18 at 6:10










  • But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
    – Daniel Logvin
    Nov 13 '18 at 6:10


















  • So what happend in your code you show the code but dont say which part you have error . your page is reloading?
    – sharif854
    Nov 13 '18 at 6:05










  • No, i just click the button and it does nothing. I don’t know where is the error...
    – Daniel Logvin
    Nov 13 '18 at 6:05










  • instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
    – sharif854
    Nov 13 '18 at 6:09










  • F12 on chrome and check XHR request tab for what happen ?
    – Truong Dang
    Nov 13 '18 at 6:10










  • But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
    – Daniel Logvin
    Nov 13 '18 at 6:10
















So what happend in your code you show the code but dont say which part you have error . your page is reloading?
– sharif854
Nov 13 '18 at 6:05




So what happend in your code you show the code but dont say which part you have error . your page is reloading?
– sharif854
Nov 13 '18 at 6:05












No, i just click the button and it does nothing. I don’t know where is the error...
– Daniel Logvin
Nov 13 '18 at 6:05




No, i just click the button and it does nothing. I don’t know where is the error...
– Daniel Logvin
Nov 13 '18 at 6:05












instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
– sharif854
Nov 13 '18 at 6:09




instead of jQuery('#ajaxSubmit').click do jQuery('#myForm').submit and check. your code is fine . you should check other things try and check in console and below that code write console.log('hi'); to track which part of code doesnt run
– sharif854
Nov 13 '18 at 6:09












F12 on chrome and check XHR request tab for what happen ?
– Truong Dang
Nov 13 '18 at 6:10




F12 on chrome and check XHR request tab for what happen ?
– Truong Dang
Nov 13 '18 at 6:10












But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
– Daniel Logvin
Nov 13 '18 at 6:10




But the submit button has the id of (#ajaxSubmit) and that should do the work as I know...
– Daniel Logvin
Nov 13 '18 at 6:10












1 Answer
1






active

oldest

votes


















0














the solution was the following one:



<script type="text/javascript">

jQuery(document).ready(function(){
jQuery('#ajaxSubmit').click(function(e){
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
}
});
jQuery.ajax({
url: "{{ url('/post') }}",
method: 'post',
data: {
_token: '{{csrf_token()}}', <-- ADD THIS LINE!
content: jQuery('#content').val()
},
success: function(result){
console.log(result);
}});
});
});

</script>





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274289%2fjquery-submit-button-does-not-work-laravel%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    the solution was the following one:



    <script type="text/javascript">

    jQuery(document).ready(function(){
    jQuery('#ajaxSubmit').click(function(e){
    $.ajaxSetup({
    headers: {
    'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
    }
    });
    jQuery.ajax({
    url: "{{ url('/post') }}",
    method: 'post',
    data: {
    _token: '{{csrf_token()}}', <-- ADD THIS LINE!
    content: jQuery('#content').val()
    },
    success: function(result){
    console.log(result);
    }});
    });
    });

    </script>





    share|improve this answer


























      0














      the solution was the following one:



      <script type="text/javascript">

      jQuery(document).ready(function(){
      jQuery('#ajaxSubmit').click(function(e){
      $.ajaxSetup({
      headers: {
      'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
      }
      });
      jQuery.ajax({
      url: "{{ url('/post') }}",
      method: 'post',
      data: {
      _token: '{{csrf_token()}}', <-- ADD THIS LINE!
      content: jQuery('#content').val()
      },
      success: function(result){
      console.log(result);
      }});
      });
      });

      </script>





      share|improve this answer
























        0












        0








        0






        the solution was the following one:



        <script type="text/javascript">

        jQuery(document).ready(function(){
        jQuery('#ajaxSubmit').click(function(e){
        $.ajaxSetup({
        headers: {
        'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
        }
        });
        jQuery.ajax({
        url: "{{ url('/post') }}",
        method: 'post',
        data: {
        _token: '{{csrf_token()}}', <-- ADD THIS LINE!
        content: jQuery('#content').val()
        },
        success: function(result){
        console.log(result);
        }});
        });
        });

        </script>





        share|improve this answer












        the solution was the following one:



        <script type="text/javascript">

        jQuery(document).ready(function(){
        jQuery('#ajaxSubmit').click(function(e){
        $.ajaxSetup({
        headers: {
        'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
        }
        });
        jQuery.ajax({
        url: "{{ url('/post') }}",
        method: 'post',
        data: {
        _token: '{{csrf_token()}}', <-- ADD THIS LINE!
        content: jQuery('#content').val()
        },
        success: function(result){
        console.log(result);
        }});
        });
        });

        </script>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 13 '18 at 6:22









        Daniel Logvin

        4311




        4311






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274289%2fjquery-submit-button-does-not-work-laravel%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Xamarin.iOS Cant Deploy on Iphone

            Glorious Revolution

            Dulmage-Mendelsohn matrix decomposition in Python