i have a long ajax call so i am using blockui like this . .
$("#roadmapContainer").block({ message: '<h2>Loading Ajax Request</h2><br/><img src="/Content/images/ajax-loader.gif" />' });
$.post(timelineUrl, function(data) {
onLoad(data);
$("#roadmapContainer").unblock();
inside teh "onLoad()" method it takes a long time so i want something where i can have the "message of block UI change from
"Loading Ajax Request"
to
"Parsing Results"
before i unblock.
is this possible with jquery blockui ?