0

I have a site where you click on a product name and it launches a URL with a filter and it returns forum posts relevant to that product name:

E.g. www.google.com/product?=blah

Instead of having to navigate to this URL is it possible to launch it in a DIV dynamically rather than the user having to click a link. Looking to develop a dashboard type view.

asked Aug 9, 2010 at 14:49
0

2 Answers 2

1

its easy :)

$.get('ajax/test.html', function(data) {
 $('.result').html(data);
 alert('Load was performed.');
});

see more here http://api.jquery.com/category/ajax/

answered Aug 9, 2010 at 15:08
Sign up to request clarification or add additional context in comments.

Comments

1

You need AJAX. You can use JQuery to perform AJAX queries to a PHP website.

answered Aug 9, 2010 at 14:51

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.