Load fetched data from the server into input text form

UnitedDan

New Member
I use this code to load data into my textarea:\[code\]$('.content_container').load("minimum_price.asp");\[/code\]But when I try to load data into my input text form with this code:\[code\]$(".items").find("input[name^=Price]").load("minimum_price.asp");\[/code\]the ASP file returns the result value using this code:\[code\]if(minPrice <> "") then minPrice = CLng(minPrice) Response.Write(minPrice)end if\[/code\]Nothing happens.Can anyone help me?
 
Back
Top