How can I add a jquery code block like this

<td><tt> Name: '.$_POST['name'].' </tt></td>
</tr>
<tr>
<td><tt> Surname: '.$_POST['surname'].' </tt></td>
</tr>
<tr>
<td><tt> E-Mail: <a href="mailto:'.$_POST['email'].'">'.$_POST['email'].'</a> </tt></td>
</tr>
<tr>
<td><tt> Message: <br><br> '.$_POST['message'].' </tt></td>
</tr>
</table>
</body>
</html>';

Recommended Answers

All 2 Replies

private void menuItem2_Click(object sender, EventArgs e)
    {
    if (comboBox2.SelectedValue != null)
    {
    this.barcode = comboBox2.Text;
    this.m_updateData = new updateData();
    this.m_updateData.Owner = this;
    this.m_updateData.Show();
     
    Application.DoEvents();
     
    m_updateData.Barcode = this.barcode;
    m_updateData.ShowDialog();
     
    this.Close();
    }
    }

You could use:

$('element').add()
$('element').append()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.