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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:21:39+00:00 2026-06-15T22:21:39+00:00

I got a problem while developing javascript based idea.. Here’s the main code, $.post(datainlines.php,

  • 0

I got a problem while developing javascript based idea..

Here’s the main code,

 $.post("datainlines.php", function(data) { 

        var lines = data.split("\n");

           for (var i = 1; i < lines.length; i++) {

             sitename= lines[i]; sitetype=lines[i++]; 

             if(i/2 == '0'){ alert current values in sitename and sitetype variables}

            }

       } );

This will get data in datainlines.php via POST, datainlines.php file data structure is like this –

Google
search
Stackoverflow
Questions
Yahoo
search
Facebook
social network

How to get site name and type in groups, like

Google
search 

then

Stackoverflow
questions

is there anyway to group out and alert per every two loops in for loop ?

  • 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-15T22:21:40+00:00Added an answer on June 15, 2026 at 10:21 pm

    Increment your loop value by two:

    $.post("datainlines.php", function(data) {
    
        var lines = data.split("\n");
    
        for (var i = 1; i < lines.length; i+=2) {
            sitename = lines[i];
            sitetype = lines[i+1];
            alert(sitename + " " + sitetype);
        }
    });​
    

    Note the i+=2 in the for loop. This will skip every other entry in the array.


    As an aside, I think with this line:

    if(i/2 == '0')
    

    What you were actually looking for is the modulus:

    if(i % 2 === 0)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got this problem while developing a Wordpress plugin. Here's the code snippet of
Today I got an error while I was developing an app based on PHP,
I got stuck in a problem while developing a web based report using q2
I have the following code, but i got a problem. Within my While, a
So I have a tiny problem. I got help here a while ago about
I got some weired problem while converting data type in ruby. Here are some
I've got a weird problem while testing some code in Groovy Console. The following
I've got a problem with XPathSelectElement while reading some xml-lines.... the function handleEachSession is
I've got this problem for a while now and I cannot find a solution
i have a problem while loading a UITableView on UITabBarController, i got this error

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.