Is there a quick way to translate (using CSS or Javascript) a tables TD into TR, currently I have:
A B C D
1 2 3 4
and I want to translate to:
A 1
B 2
C 3
D 4
??
|
Is there a quick way to translate (using CSS or Javascript) a tables TD into TR, currently I have:
and I want to translate to:
?? |
|||
|
|
|
You want to turn HTML arranged like this:
Into this:
Correct? You can do this with Javascript, however, it is difficult to suggest a method with out knowing more about the structure of your site/HTML files. I'll give it a go. Assuming your
You can create a new table like this:
Now you need to transpose the old tables rows into the new tables columns:
This ought to do what you need. Be forewarned: not tested. Working this javascript code into an HTML page is left as an exercise for the reader. If anyone spots any errors that I missed, I be gratified if you point them out to me or simply edit to fix :) |
|||||
|
|
Here is a tested function that will transpose a table, and it will preserve any formatting/events you had hooked to any elements within the table (ie: onclicks on cell or cell contents)
Notes: - Requires Jquery - Not tested on very large tables - Will likely crap out on tables with spanned columns/rows - Will likely crap out on tables with any combination of thead/th So as long as your tables have no spanned cells and doesnt use thead/th, should be good to go. |
|||
|
|