Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This strikes me as an important architecture for websites, where a single, simple function is carried out. An example of this would be Google Translate, which takes some input and presents the output right after.

What is the simplest way to create something like this?

share|improve this question
Good concept of Programming.... – Arpit Srivastava Oct 1 '12 at 4:55

closed as not a real question by Vikdor, pst, Quentin, Florent, dystroy Oct 1 '12 at 14:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

the concept of google translator is looks like

  1. take the value by javascript .. by keyboard event (keyup event )
  2. send this to server by ajax or something like that
  3. get the response from the server by ajax or something like that and show it
share|improve this answer
something like that jsfiddle.net/Px7cm but there is no php file – Database_Query Oct 1 '12 at 5:05

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