vote up 0 vote down star

Hi,

I want to reload page after deleting a row from table, and then display message, below is the javascript code,

if(action == 'delete'){
  window.location.reload(true);
  //tried to set timeout here, no luck :(
  document.getElementById('messageSpan').innerHTML = "The value has been deleted."; 
}

It seems that the reload function is executed after the 'messageSpan' content has been changed, so the reload function wipes out the 'messageSpan' content.

I need help

Thanks a lot,

Del

flag
I don't get it - you mean you want messageSpan to still be gone after the page has been reloaded? – karim79 Oct 8 at 23:48
I want to dispaly messageSpan after page reloaded. – Del Oct 9 at 16:48

3 Answers

vote up 1 vote down

If you are trying to show the message for a defined period of time and then reload the page, you can use the setTimeout function:

if(action == 'delete'){
  document.getElementById('messageSpan').innerHTML = "The value has been deleted."; 

  setTimeout(function () { // wait 3 seconds and reload
    window.location.reload(true);
  }, 3000);
}

Note that your message will be visible only for those three seconds, it will disappear when the page reloads.

link|flag
vote up 0 vote down

Reloading the page will destroy the state of the page and thus the user will never see the message HTML because it gets reset by the page reload.

link|flag
vote up 0 vote down

Let me explain what I want here,

1, delete a row in table in my page. This deletion will delete record in database table. 2, I want to reload page to reflect previous deletion. 3, then display successful message in 'messageSpan' element. (Originally, the content of 'messageSpan' is empty)

in my code: if(action == 'delete'){ window.location.reload(true); //tried to set timeout here, no luck :( document.getElementById('messageSpan').innerHTML = "The value has been deleted."; }

I saw that the content of 'messageSpan' element had been changed, and then been cleared by reload. But, window.location.reload should be executed before I changed 'messageSpan' content. Am I right?

Thanks

Del

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.