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 8889669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T22:19:03+00:00 2026-06-14T22:19:03+00:00

<script language=JavaScript> function validate(x) { var cur_p = document.getElementById(‘current’).value; var new_p = document.getElementById(‘new’).value; var

  • 0
<script language="JavaScript">
    function validate(x) {



        var cur_p = document.getElementById('current').value;
        var new_p = document.getElementById('new').value;
        var con_p = document.getElementById('confirm').value;

        document.getElementById('msg_p').innerHTML = '';
        document.getElementById('msg_cur').innerHTML = '';


        if(x != cur_p)
        {   document.getElementById('msg_cur').innerHTML = ' Your password was incorrect';
            return false;
        }   

        if(new_p != con_p)
        {   document.getElementById('msg_p').innerHTML = 'Passwords do not match';
            return false;
        }

        return (true);

    }
</script>

html

<form action='change-password.php' method='post' onsubmit="return validate('<?=$current?>')" >

I have these on my code.
I can’t show the result of these ifs simultaenously.

if(x != cur_p)
and 
if(new_p != con_p)

if I place the

if(x != cur_p){} 

at the top of

if(new_p != con_p){}

the response result of if(x != cur_p) will show and the latter will not

and vice versa.

how can i show the result of those two ifs
(assuming that the condition for those were meet)

  • 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-06-14T22:19:05+00:00Added an answer on June 14, 2026 at 10:19 pm

    First you have a typo in your code

    document.getElementById('msg_p').innerHTM = '';  <-- Missing an L
    

    Second, of course if you return, it exits the function. So the code will not execute both statements.

    Change

        if(x != cur_p)
        {   document.getElementById('msg_cur').innerHTML = ' Your password was incorrect';
            return false;
        }   
    
        if(new_p != con_p)
        {   document.getElementById('msg_p').innerHTML = 'Passwords do not match';
            return false;
        }
    
        return (true);
    

    to

        var isValid = true;
        if(x != cur_p)
        {   document.getElementById('msg_cur').innerHTML = ' Your password was incorrect';
            isValid = false;
        }   
    
        if(new_p != con_p)
        {   document.getElementById('msg_p').innerHTML = 'Passwords do not match';
            isValid = false;
        }
    
        return isValid;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

HI, I've got: <script language=javascript type=text/javascript> $(document).ready(function() { $(#thumbs a).click( function() { var BGswitch
<SCRIPT Language = JavaScript> function calculate() { a = 12 b = eval(document.form.number.value) c
Okay, I have this code: <script language=javascript type=text/javascript> <!-- function requestPage(page) { var request
Say I have this code in my page: <script language=javascript> $(document).ready(function() { $(.test).click(function() {
Greetings again helpers, I have these snips: <head> <SCRIPT LANGUAGE=JavaScript> <!-- Begin function validate()
I have this simple code that speaks for itself. <script language='javascript"> function check() {}
I have Javascript as below: <script type="text/javascript" language="javascript"> function redirectToPrevious(abcURL) { window.location.replace(abcURL); } function
<script LANGUAGE=JavaScript> function confirmSubmit() { jConfirm('Is the Appointment Confirmed?', 'Confirmation Dialog', function(r) { if(r)
I have this Javascript: <script language=javascript type=text/javascript> $().ready(function() { $('#ex2').jqm({ajax: 'view.php?id=<?=$objResult[id];?>', trigger: 'a.ex2trigger'}); });
I am trying to use the following script in asp.net: <script language=javascript type=text/javascript> function

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.