Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Salman _Memon

@Salman _Memon
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Convert Horizontal <table> to vertical using CSS
    S Salman _Memon

    <style>
    table {
    width: 100%
    }
    table,
    th,
    td {
    border: 1px solid black;
    border-collapse: collapse;
    }
    th,
    td {
    padding: 5px;
    text-align: left;
    }
    </style

    <h2>Horizontal Headings:</h2>

    <table>
    <tr>
    <th>Name</th>
    <th>Telephone</th>
    <th>Telephone</th>
    </tr>
    <tr>
    <td>Bill Gates</td>
    <td>555 77 854</td>
    <td>555 77 855</td>
    </tr>
    </table>

    <h2>Vertical Headings:</h2>

    <table>
    <tr>
    <th>Name:</th>
    <td>Bill Gates</td>
    </tr>
    <tr>
    <th>Telephone:</th>
    <td>555 77 854</td>
    </tr>
    <tr>
    <th>Telephone:</th>
    <td>555 77 855</td>
    </tr>
    </table

    >

    Sam

    Web Development question css com announcement

  • My Data is not showing on my html page
    S Salman _Memon

    // here second page/// <html> <head> <script type="text/javascript"> $(document).ready(function(){ var url="getjson.php"; $("#jsondata tbody").html(""); $.getJSON(url,function(data){ $.each(data.User,function(i,data){ var newRow = "" +""+data.id+"" +""+data.name+"" +""+data.age+"" +""+data.gender+"" +"" ; $(newRow).appendTo("#jsondata tbody"); }); }); }); </script> </head <body>

    Id

    Name

    Age

    Gender

    Location

    </body> </html>

    Web Development javascript php html tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups