Thanks again Jorn, you've been a big help...

If anyone can help me, I'd appreciate it, I just need to ask two more
questions. My test page is here:
http://paulcollinslondon.com/contactTest.php

I'd just like to know:

- How can I actually remove HTML and replace it with the JQuery code,
instead of just adding the new code after it?

- How can I submit the form using JQuery after I remove the submit
button and replace it with a HREF?

Any help/links would be greatly appreciated.
Cheers
Paul


On 27/03/2008, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
>
>  Paul Collins schrieb:
>
> > Thanks for your help Jörn, that's solved that part of my equation.
>  >
>  > I'm stuck again! I would like to find out how to get the value of an
>  > id that ends in "_replace"
>  >
>  > So for instance, I have the following line that looks for a input tag
>  > with the type of submit, that has an id ending with "_replace". (It
>  > can have anything before that).
>  >
>  > So, for EG: <input type="submit" id="sendButton_replace" value="Send"/>
>  >
>  > I then want to get the entire content of the id and store it into a
>  > variable. I would also like to get the text in the Value and store it
>  > as another variable.
>  >
>  > I currently have:
>  >
>  > $(document).ready(function(){
>  >       $(":submit[id$='_replace']");
>  >       var replaceID = $(":submit[id$='_replace']").val;
>  >       alert (replaceID);
>  >     return false;
>  > });
>  >
>
> How about...
>
>  $(":submit[id$='_replace']").attr("id")
>
>
>
>  Jörn
>

Reply via email to