Dirty Bird Design
Dirty Bird Design

Reputation: 5553

get string value with firebug console

I have a rather lengthy form that builds selected options into an xml string for submission to a third party. I have had to make some changes and want to make sure they are correct. How do I check the value of the string as it's being built in console? I've tried:

console.log; $("#StringName").val();

but it just returns undefined. Is there a way that will work? thx

Upvotes: 1

Views: 661

Answers (1)

Guillaume Cisco
Guillaume Cisco

Reputation: 2945

console.log($("#StringName").val()); should work

Upvotes: 5

Related Questions