I'm stuck in the corners of jQuery universe and could sure use some help.
In short, I make an Ajax call using jQuery (GET) and get a XHTML page as a response. In the response (which includes the <html> ,<head> and <body> tags amongst other things) there is an input element for which I only know part of the name. I need to get the value of this hidden input field which comes along with the response.
p.s. I have no control over what the html response would look like so I can't reformat it. These files need to be in a folder that contains jQuery.js (latest version today)
This is what I've come up with so far.
Page1.html (makes Ajax call and gets page2.html in response)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>runthis</title>
<script type="text/javascript" language="javascript" src="jQuery.js"></script>
<script tyle="text/javascript">
$(document).ready(function(){
$('input').click(function(){
$.ajax({
type : "GET",
url : 'page2.html',
dataType : "html",
success: function(data) {
alert($(data).filter('input[name*="test"]').value);
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
});
});
</script
</head>
<body>
<input type="button" value="load" />
</body>
</html>
Page2.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>TiTlE</title>
</head>
<body>
<input type="hidden" name="1-test" value="123" />
<input type="hidden" name="some-other-name" value="456" />
<input type="hidden" name="yet-another-name="789" />
</body>
</html>
So in these examples I need to get "123" as the answer.
I would greatly appreciate if someone could point out my mistake and help me get this working. I've spend hours going through the net and all my Google search results are marked as seen :) but still cant get it to work.