On Jan 20, 2:18 pm, Mike Geise <[EMAIL PROTECTED]> wrote:
> I am using the ajax load method to populate a select list.
>
> $("#games").load("$siteRoot/file/ajaxgames.aspx",
> {criteria.Platform.PlatformID: $(this).val(), view: "normal"});
>
> what I am wondering is how I can get jquery to work with the var
> "criteria.Platform.PlatformID"

It's not a "var"; try

$("#games").load("$siteRoot/file/ajaxgames.aspx",
{criteria: {Platform : {PlatformID : $(this).val()}}, view: "normal"})

--

hj

Reply via email to