Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
Glad you figured it out.
Just as a sidenote, don't feel like you always need to use jQuery methods:
Code:
var thisid = $(this).attr("id");
inside of the $.click() function could have easily been expressed as:
Code:
var thisid = this.id;
which is shorter and will parse faster.
|