I have a CSS id #cross-reference-section-value set to display: none. It hides the label field in the HTML. I have JavaScript code to select the value and store it into the the hidden element like this:
var generic_lookup_Enr_Rds_Section2009_selected = function(id, to_s) {
$("#cross-reference-section-value").text(id + " " + to_s);
$("#modal_popup").dialog("destroy");
};
Now I want to enable or remove that attribute of display: none using JavaScript to make it visible to display the value. And one more thing is I have selected the id and string value. Is it possible to display only the string not the id? But the id should be hidden. Because I am calculating the other fields through this id. So, I just want to hide this id and show the string. Thanks


$('#'+id).text(to_s).show()? When a parent is hidden it's children are hidden too. – undefined Oct 4 '12 at 11:46to_sbut notidyou should put them in different<span>elements. Then you can hide one span and show the other. – Barmar Oct 4 '12 at 11:52