Hi everyone! Ok, I have a very silly question to ask (which Im rather embaressed about I must admit!). Im using the nyroModal plugin for jQuery within an ASP.NET 3.5 WebForms app. Basically, let's say I have a hyperlink pointing to http://www.mysite.com/GetData.html?id=100
When the link is clicked, I want GetData.html to extract data from a database and populate some innerHTML elements with the return data. the querystring value will be extrcated using jqURL plugin for jQuery, and I will use jQuery's built-in Ajax function to make a call to a webservice passing in the id as a parameter.
My question is this: How do I use jQuery.Ajax() if this is not a POST method, but rather a GET method, from how I understand it? According to documentation, in order for $.ajax() to work, the type must be "POST".
Could someone please shed some light on this for me?
Thank you