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?
Asked
Active
Viewed 290 times
2 Answers
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
-
1these are general disadvantages of AJAX, not of its Rails' implementation. – alex.zherdev Jun 06 '10 at 08:41
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
-
1This 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