[jQuery] Re: Block UI question

2009-11-04 Thread MorningZ
Has nothing to do with using the full or minified version

[jQuery] Re: Block UI question

2009-11-03 Thread MorningZ
There's all kinds of things to look at... first, you pass in "page" as the data for the POST call but no where (in that code sample) do you define it second load up Firefox and fire up Firebug (http:// www.getfirebug.com), this will let you watch, in real time: 1) what you are sending to

Re: [jQuery] Re: Block UI question

2009-11-03 Thread Rich Elston
Don't know how but I got it to work. Still scratching my head. This is my code. Anything look funny? $(document).ready( function() { $('#submit').click(function() { /* Block the UI and display the processing message... */ $.blockUI({ message: $('#processing') }); /* do the AJAX c

Re: [jQuery] Re: Block UI question

2009-11-03 Thread Rich Elston
Here's what I have so far. I'm kind of stuck. I just started creating a simple test page with one input field and a submit button. I want to pass the input value to a file called submit.html. This file will accept the argument and doing the heavy lifting with the server. When the response is ret

[jQuery] Re: Block UI question

2009-11-02 Thread jmatthews
Once you re-direct by submit, your current page loses control. That's the problem with the submit button. When user presses, your page is immediately gone. You need to manually do this by making your own, fake "submit." Stick a .gif "submit look-alike" in your html. http://www.w3schools.com/a