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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:03:30+00:00 2026-06-15T20:03:30+00:00

im trying to combine 2 variables in 1, the classical book way a =

  • 0

im trying to combine 2 variables in 1, the classical book way

a = 1;
b = "bla";
c = a + b;

But, When one of the variables, has html() jquery function, the result is only this variable, and nothing more. Why is this? And what should i do in such cases?

All The JS Code

    $("#target").click(function() {
$('#myTable tr:last').after('<tr><td>Bla</td><td><div class="remove">REMOVE</div></td></tr>');
});
$("#myTable").on('click', '.remove', function(event) {
  $(this).parent().parent().remove();
});

$("button").click(function() {
  var input = $("input").val();
  var table = $("#myTable").html();
  var output = input + "www" + table;
  $(".result").html(output);
});

Relevant Code:

$("button").click(function() {
  var input = $("input").val();
  var table = $("#myTable").html();
  var output = input + "www" + table;
  $(".result").html(output);
});

html output only prints the table contents, but not the other vars. Combining vars sure works, but if there is html(). in one of them, only this var is printed. What sourcery is this?

http://jsbin.com/ucopun/9/edit

To see it not working, type something in the input and click result.

  • 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-15T20:03:31+00:00Added an answer on June 15, 2026 at 8:03 pm

    The problem is that $("#myTable").html(); returns your table html without the start and ending tags <table></table> so when you later concatenate your text to the amputed html table code the browser interprets your text belong to the table but dont know how to render it.

    The simple solution is to output a proper table so the text is correctly displayed and separated from the table, so to do that, just replace your following line:

    var table = $("#myTable").html();
    

    for this one:

    var table = '<table>' + $("#myTable").html() + '</table>';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to combine 4 input fields into a jQuery function so that it
i am trying this code, but i get this error: Only variables can be
I'm looking for a way to combine jquery variables. Looking through related questions, nobody
I'm trying to combine these variables and append them to a select tag but
I'm trying to combine matching something like: $(.item).each(function(i) { //animation here }); with jQuery's
im trying to combine two images into a single image. unfortunately this has to
I'm trying to combine both the result of a semantic and a dictation request
I am trying to use Path() but it has a blue line under it
i am trying to combine several variables into 1 element of a bytearray. I
So, I'm trying to figure out the best way to combine many data types

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.