Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6593603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:42:10+00:00 2026-05-25T17:42:10+00:00

in some reason if I use this code it sends the form in normal

  • 0

in some reason if I use this code it sends the form in normal way not with jquery? What could be the problem? thanks

<script>
$(document).ready(function() {
    $("form#formi").submit(function() {
        $(":text, textarea").each(function() {
            if ($(this).val() === "") {
                $('p#error').fadeIn(1000);
                var tyhjia = true;
            }
        });
        if (tyhjia == true) {
            // tyhjia on , joten ei jatketa
        } else {
            // we want to store the values from the form input box, then send via ajax below
            var fname = $('#name').attr('value');
            var lname = $('#email').attr('value');
            $.ajax({
                type: "POST",
                url: "laheta-viesti",
                data: "name=" + fname + "& email=" + lname,
                success: function() {
                    $('form#formi').hide();
                    $('p#valmista').fadeIn(1000);
                }
            });
        }
        return false;
    });
});
</script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:42:11+00:00Added an answer on May 25, 2026 at 5:42 pm

    Errors in your javascript are the common cause for this behavior. For example you have defined the tyhjia variable inside the anonymous callback and try to use it outside. I have tried to clean your code a little:

    <script type="text/javascript">
        $(document).ready(function() {
            $('form#formi').submit(function() {
                var tyhjia = false;
                $(':text, textarea').each(function() {
                    if($(this).val() === '') {
                        $('p#error').fadeIn(1000);
                        tyhjia = true;
                    }
                });
    
                if (tyhjia == true) {
                    // tyhjia on , joten ei jatketa
                } else {
                    // we want to store the values from the form input box, then send via ajax below
                    var fname = $('#name').val();
                    var lname = $('#email').val();
                    $.ajax({
                        type: 'POST',
                        url: 'laheta-viesti',
                        data: { name: fname, email: lname },
                        success: function() {
                            $('form#formi').hide();
                            $('p#valmista').fadeIn(1000);
                        }
                    });
                }
                return false;
            });
        });
    </script>
    

    Of course there could be some other errors left. Use FireBug or Chrome Developer Tool and inspect the console for any possible errors reported.

    And by the way for doing validation, which is what apparently you are trying to do here, I would very strongly recommend you the jquery validate plugin.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason I am not able to use the TextFlow element in WPF.
I use K2 as my workflow engine. For some reason my processes are not
I'm trying to use Python to run pdftotext, but for some reason, my code
For some reason, my code displays correctly in all browsers except IE8. <form dojoType=dijit.form>'
This used to work, but for some reason it doesn't anymore. I use a
Following on from a previous question, for some reason when I use the following
For some reason I can't use runat=server as an attribute for the input tag
For some reason, I should use gcc to compile a C file, then link
Can I simply use if(myString == nil) For some reason a string that I
I use PopUpButton object and inside a Menu object. For some reason it has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.