Hi folks, first of all: Thanks to Dale for this great udf.
I only got one problem, which I appearantly can't solve myself
I use the udf, to read the timetable of my school.
there are some colspans in the table, so when a lesson takes 3 hours, it is just colspan=3.
the point is, when reading this table, it only takes the first part of the cell, the second & third, are kept empty.
I already found that this is correct, but it isn't really what I need
so basicly my question is:
is it possible to clone the content of the leftmost element of the cell, to the colspan parts?
sorry if my question isn't clear enough, can't explain it very well I think
so when I have 5 td's, and the 3rd one has a colspan of 3, I would like to get this:
1st - hi
2nd - this
3rd - is
4th - a
5th - test
$array[0] hi
$array[1] this
$array[2] is
$array[3] is
$array[4] is
$array[5] a
$array[6] test
hope this is clear
thanks in advance.