-2

Is there is a basic way to create multiple content tabs in an HTML page without CSS and/or Javascript and/or JQuery?

Community
  • 1
  • 1
user1415780
  • 1,153
  • 5
  • 16
  • 33
  • StackOverflow is not the proper place for this question. You need to do your own coding and if you aren't sure why something is not working as expected, post the code with an explanation of what you were expecting it to do, and what it is actually doing including all error messages. See [about StackOverflow](http://stackoverflow.com/about). – John Conde Mar 05 '13 at 14:16
  • possible duplicate of [HTML tab interface using only CSS](http://stackoverflow.com/questions/4937371/html-tab-interface-using-only-css) – JJJ Mar 05 '13 at 14:17
  • Not possible, CSS3 has it, jQuery has it. HTML doesn't – s.lenders Mar 05 '13 at 14:17
  • 1
    Oops, misread the question. Possible in CSS+HTML, not HTML only. Also, I'm not sure why anyone would want to other than idle curiosity (are you really not going to style the page at all?). – JJJ Mar 05 '13 at 14:19
  • 1
    HTML is the semantics of your website. when u say you want to have a tabbing behaviour, you are talking about behaviour to change something when a link or something else is clicked and to show different content accordingly. You will need javascript to achieve this, as remember, to give behaviour to your semantics/content you need JS in browser world for clientside – KKS Mar 05 '13 at 14:23

1 Answers1

1

I do not think it is possible. JQuery would be my best bet at doing it since implementation is easy. you can have a look at JQUERYUI. There are other javascript library that can help you easily achieve what you want. My next choice would be CSS

Ron
  • 886
  • 13
  • 39