Hi I am new to the forum and new to Processing, sorry if this question is basic. I am looking to grab the current ski conditions at a local ski area and display it in a window I created in Processing. I only need the 4 numbers numbers pulled off of the website and need them to update daily. Here is what the HTML code looks like:
</div>
<table class="snowReportSection" id="snowReportNewSnow">
<tr>
<th colspan="4">
New Snow (In Inches)
</th>
</tr>
<tr>
<td class="subHeader">
24 hrs
</td>
<td class="subHeader">
48 hrs
</td>
<td class="subHeader">
72 hrs
</td>
<td class="subHeader">
Season
</td>
</tr>
<tr>
<td>5"</td>
<td>12"</td>
<td>12"</td>
<td>400.00"</td>
</tr>
<table class="snowReportSection" id="snowReportNewSnow">
<tr>
<th colspan="4">
New Snow (In Inches)
</th>
</tr>
<tr>
<td class="subHeader">
24 hrs
</td>
<td class="subHeader">
48 hrs
</td>
<td class="subHeader">
72 hrs
</td>
<td class="subHeader">
Season
</td>
</tr>
<tr>
<td>5"</td>
<td>12"</td>
<td>12"</td>
<td>400.00"</td>
</tr>
I am trying to use an example I found online and modify it but it does not seem to match what I am looking to do. Can anyone offer me any suggestions?
Thanks
Mike
1