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

  • SEARCH
  • Home
  • 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 9257853
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:15:14+00:00 2026-06-18T12:15:14+00:00

I have this script and I am trying to create a third value (m3)

  • 0

I have this script and I am trying to create a third value (m3) but I do not know what to do with the obj.nodeValue=(obj.nodeValue==m1)?m2:m1; line.
Also how would I go about putting html in m1, m2 and m3? specifically the bold tag.
Thanks

<script type="text/javascript">
function adMessage() {

   delay=10000;

   m1='Place your Thanksgiving orders today!';
   m2='All orders must be received by November 20th!';
   m3='testing';
   obj=document.getElementById('orders').firstChild;

   obj.nodeValue=(obj.nodeValue==m1)?m2:m1;

   setTimeout(function(){adMessage()},delay);
 }
if(window.addEventListener){
   window.addEventListener('load',adMessage,false);
 }
else { 
if(window.attachEvent){
   window.attachEvent('onload',adMessage);
  }
 }
</script>


<p id="orders">Place your Thanksgiving orders today!</p>
  • 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-18T12:15:16+00:00Added an answer on June 18, 2026 at 12:15 pm

    The line

    obj.nodeValue=(obj.nodeValue==m1)?m2:m1;
    

    is a short version of this

    if (obj.nodeValue == m1) 
    {
        obj.nodeValue = m2;
    } 
    else 
    {
      obj.nodeValue = m1;
    }
    

    Depending on your logic to display the m3 value you need to extend this decision.

    If you want to switch to the next message at each interval then maybe this is your solution:

    if (obj.nodeValue == m1) 
    {
        obj.nodeValue = m2;
    } 
    else if (obj.nodeValue == m2) 
    {
      obj.nodeValue = m3;
    }
    else 
    {
       obj.nodeValue = m1;
    }
    

    And the idea of Felix is of course better. If you put your messages in an array you can easily extend it.

    For your part of the question about embedding HTML tags: you need to set innerHTML value of the element instead of nodeValue.

    I put up a running jsfiddle with all aspects of your question: http://jsfiddle.net/eNape/1/

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

Sidebar

Related Questions

I trying to create a auto-complete search script (jQuery + PHP) but I have
I'm trying to use this script (which extracts the domain from a URL): CREATE
I'm trying to create a script that launches another script and have it as
I have a script that I wrote earlier and am now trying to create
I am trying to create a BASH script what would extract the data from
I have been trying to create an expect script to automatically login to my
I have this script that run to fix my menu bar to the browser
I have this script and need to be able to call the $play variable
I have this script set up that echoes all relevant users in a database
I have this script in the head of my index.html. I want different scripts

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.