what is the differences between ajax.url().load() and ajax.url().reload()?

what is the differences between ajax.url().load() and ajax.url().reload()?

bikaibikai Posts: 21Questions: 12Answers: 0

if i change the url, such as:

ajax.url("another.json").load()
ajax.url("another.json").reload()

what is the differences between them?
if the url is not changed, such as:

ajax.load()
ajax.reload()

what is the differences between them?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,819Questions: 1Answers: 10,517 Site admin
    Answer ✓

    ajax.url("another.json").reload()
    ajax.load()

    These two should give you an error - there is no url().reload() or ajax.load() method in DataTables. The full list of methods available are shown here.

    Allan

This discussion has been closed.