I'm wondering how I can get this type feature to work while utilizing the cascading options feature as well as the complex to simple pulldown.
$('select[id$="Report_Type"]').live("change", function()
I'm not sure how to get this working while utilizing the Spservices features.
$('select[id$="Report_Type"]').live("change", function()
{
if($(this).val()=='Rebuttal')
{
var title=$("[id$='Evaluations']");
title.show();
}
else
{
var title=$("[id$='Evaluations']");
title.hide();
}
});I'm not sure how to get this working while utilizing the Spservices features.