issue 6
([Suggestion] More than one set of tabs.) reported by ad...@nogardtech.com.ar
- If you change the line:
id = "#" + this.attr('id')
for this:
var id = "#" + this.attr('id')
I've do this to manage more than one set of tabs.
If you change the line:
id = "#" + this.attr('id')
for this:
var id = "#" + this.attr('id')
I've do this to manage more than one set of tabs.
Apr 16, 2009
issue 5
(Another addition to your code - effect none) reported by mr.anteater
- I just added this to my site's version of your plugin:
case 'none':
old.hide();
target.show();
break;
might be helpful to some who don't want any effect on their tabs
I just added this to my site's version of your plugin:
case 'none':
old.hide();
target.show();
break;
might be helpful to some who don't want any effect on their tabs
Apr 07, 2009
issue 4
(Not working in IE7) commented on by d...@saturdaybang.com
- Found my own answer. Changed the variable name from 'id' to 'my_id' and IE is happy
now. Must have been some sort of name collision. I'm attaching my updated version.
Found my own answer. Changed the variable name from 'id' to 'my_id' and IE is happy
now. Must have been some sort of name collision. I'm attaching my updated version.
Apr 07, 2009
issue 4
(Not working in IE7) reported by d...@saturdaybang.com
- What steps will reproduce the problem?
1. When using the this in IE7 it gives an error. "Object doesn't support
this property or method." and it seems to be pointing to this line "id =
"#" + this.attr('id');"
2. I noticed that line didn't have a semi-colon so I added it. No help though.
What is the expected output? What do you see instead?
Script doesn't function at all. All three content areas show up and the
tabs only take you to that area.
What version of the product are you using? On what operating system?
Using minitabs 0.1 and jQuery 1.3.2.min
Thanks!
Please provide any additional information below.
What steps will reproduce the problem?
1. When using the this in IE7 it gives an error. "Object doesn't support
this property or method." and it seems to be pointing to this line "id =
"#" + this.attr('id');"
2. I noticed that line didn't have a semi-colon so I added it. No help though.
What is the expected output? What do you see instead?
Script doesn't function at all. All three content areas show up and the
tabs only take you to that area.
What version of the product are you using? On what operating system?
Using minitabs 0.1 and jQuery 1.3.2.min
Thanks!
Please provide any additional information below.
Sep 10, 2008
issue 3
(Another Suggestion ) reported by mr.anteater
- Hi, just a suggestion, currently when you click an active tab it runs your
function why not wrap it like so:
function(){
if($(this).hasClass("current")) {
// do nothing
}
else {
// run the tabbing function
}
Hi, just a suggestion, currently when you click an active tab it runs your
function why not wrap it like so:
function(){
if($(this).hasClass("current")) {
// do nothing
}
else {
// run the tabbing function
}