0
votes
Beginning jQuery help
$(#content) << This is definately a problem.
Selectors must be strings, so $("#content") would be correct.
…
2
votes
Can I fetch records from MySql database using jQuery?
Short answer:
No, you can't do that out of the box. JavaScript code runs in the browser, the MySQL-Database on the server. Browser-Javascript cannot run any code directly on the server (pf …
