-3

What am I doing wrong? The tabs will not work at all.

http://pastebin.com/tBsjbZWV

nowayyy
  • 917
  • 1
  • 17
  • 45
  • I don't see the JavaScript that's giving you this error. Please add more details. If that's all there is and you're only using `.tabs()`, then it's most likely because of the issue ariel has mentioned below. – Shaz May 08 '11 at 21:54
  • 3
    questions with only links to code are not real questions. – Jeff Atwood May 09 '11 at 08:55

2 Answers2

2

actually there are a couple of problems except for the wrong side of the slash as ariel noted. I believe the main problem is you are missing the link for jquery-UI custom css.. (I checked it and it worked fine after the correction)

should be something like: link rel="stylesheet" type="text/css" media="screen" href="/ui/css/ui-lightness/jquery-ui-1.8.10.custom.css" /> you should download the custom css from jquery-ui page

alonisser
  • 11,542
  • 21
  • 85
  • 139
  • at what part of the .css file where I can get rid of styling of the tabs? – nowayyy May 08 '11 at 22:39
  • 1
    I didn't try to edit the css file but is supposed to be quite easy to build it for your custom needs with jquery-ui themeroller. you can customize it here:http://jqueryui.com/themeroller/ – alonisser May 08 '11 at 22:58
1

You're using an incorrect format for your some of your tags.

Incorrect ----- <a/>
Correct   ----- </a>

Also, don't forget to include jquery-ui.css.

Shaz
  • 15,637
  • 3
  • 41
  • 59
ariel
  • 15,620
  • 12
  • 61
  • 73