<script>
// increase the default animation speed to exaggerate the effect
$.fx.speeds._default = 1000;
$(function() {
$( "#dialog" ).dialog({
autoOpen: false,
show: "blind",
hide: "explode"
});
$( "#opener" ).click(function() {
$( "#dialog" ).dialog( "open" );
return false;
});
});
</script>
---------------------------
My question is how do I pass the Definition value (text) to display
in the dialog box?
Sorry if this is obvious, but this is my first go with jquery and jquery ui... Thanks.