Displaying User Inputted Text

Hello
I am learning to make a website and I want to display the inputted text next to it input box. It works for Chrome but in IE it won’t display. What should I do?

This is what I have now

<div style="width:5000px;height:100px;border:0px; background-image:url('file://E:/DR Liq website/ccliquidation_files/image604.png'); background-repeat:no-repeat;"> <p class="main">
&nbsp;&nbsp;Lot XXXX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7/14/2014 to 7/18/2014 5:00 pm EST &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Closed</b>
</p>
<p class="main">
<form oninput="bidbox.value=parseInt(bid.value)">
Enter/Change Bid:
<input type="text" name="Fname" id="bid"> <input type="submit" value="Submit"> Your Bid: $<output name="bidbox" for="bid"> </output>
</form>

Then I read a bit more and tried to do this

<div style="width:5000px;height:100px;border:0px; background-image:url('file://E:/DR Liq website/ccliquidation_files/image604.png'); background-repeat:no-repeat;"> <p class="main">
&nbsp;&nbsp;Lot XXXX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7/14/2014 to 7/18/2014 5:00 pm EST &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Closed</b>
</p>
<p class="main">
<form oninput="bidbox.value=parseInt(bid.value)">
Enter/Change Bid:
<input type="text" name="T251" id="bid"> <button onclick="myFunction()">Submit Your Bid</button> Your Bid: $
<p id="bid"></p>
<script>
function myFunction() {
    var x = document.getElementById("t251bid").value;
    document.getElementById("bid").innerHTML = x;
}
</script>
</form>

</div>

Not sure what I’m doing wrong

Try:

change…
document.getElementById(“bid”).innerHTML = x;

to…
document.getElementById(“bid”).value = x;

Unless I’m missing it, I don’t see anything with an Id of “t251bid” so “x” will be undefined, no?

I’m sorry I just say that, it only says bid and not t251bid.

Thank you I will give it a try