1

what are the scenario's where Ajax could not be used in Rails Application. Is there any disadvantages of AJAX (AJAX on RAILS) if yes please mention which are they?

aarona
  • 35,986
  • 41
  • 138
  • 186
Salil
  • 46,566
  • 21
  • 122
  • 156

2 Answers2

2
  • The browser may not be able to interpret javascript, but rails can detect that and you can act accordingly
  • The user cannot back/forward or bookmark a particular state within the page, because it is dynamically generated
  • Search engines cannot index particular states within the page

There may be others that i can't think of right now.

alexcepoi
  • 708
  • 1
  • 10
  • 19
0

I think the biggest disadvantage of AJAX in general is the desire to use is when it is not needed.

manlycode
  • 421
  • 6
  • 16
  • 1
    This is true for all programming really. Use the best tool for the job, not necessarily the one you want to use. – hwrdprkns May 23 '11 at 02:57