Issue 563: Can I keep the title of the page jumped
Status:  New
Owner: ----
Reported by sll...@163.com, Jan 7, 2011
What steps will reproduce the problem?
I have two pages,one is default.aspx and the other is default2.aspx.
The default2.aspx jumped from default.aspx,but the title of default2.aspx is missed.
I kown I can set the title by this way,
   $("#"text).click(function(e){
         e.preventDefault();
         $.nyroModalManual({
         url: default2.aspx,
         modal: true,
         title:"test title"
       });
but i want to kown if i can keep  the title of default2.aspx when  jump.
Thanks!