0

I'm parsing a html page with the following code:

function mealSearch() {
    $.get('http://www.season-hof.de/speisekarte.html', function(html){
       html = $(html.replace(/<img[^>]*>/g,"")).find("div.inhalt h2");
        $("#mealResults").html(html);
    });
}

The text on .../speisekarte.html is shown in bold.

Is it possible to parse the text in normal?

Michael Irigoyen
  • 22,513
  • 17
  • 89
  • 131
krank42
  • 19
  • 4

1 Answers1

0

It sounds like you have some CSS set for #mealResults that is bold. If not, set CSS for #mealResults to have font-weight:normal.

Josh Wa
  • 1,049
  • 2
  • 9
  • 12