How to pass variable values from one page to another page using AJAX and jQuery.
I have categories like this main category users,names.first names ...etc and sub menu
A|B|C|D|E|F||G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z .
How to pass variable values from one page to another page using AJAX and jQuery.
I have categories like this main category users,names.first names ...etc and sub menu
A|B|C|D|E|F||G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z .
Use jQuery.get() or jQuery.post(). You can pass the data in as an argument.
If you want to use ajax
you will have to have some server side language such as php, asp to process your data and return some some response. See this jquery ajax tutorial, good for beginners.