i want make project accessible not via back-end code (c#, python, php, etc.), decided write easy , simple js api, every developer can integrate within website / project. since whole thing service driven system, of stuff runs via rpc encoded json.
my problem is, if want make api got following 2 options:
- writting raw rpc functions ground up
- using jquery third-party library
the big problem option number 2, far best option, have "dear developer, need use jquery access api", striking me, since not want dictate ppl should or should not use restricting opportunities.
is there way implementing jquery's rpc stuff without breaking other potential js framework final developer use?
if you're worried conflict between jquery , other libraries, use jquery.noconflict()
, solves problem!
more info @ : http://docs.jquery.com/using_jquery_with_other_libraries
Comments
Post a Comment