Users Pricing

forum

Home Forums How to get element name of value? – MindStick

How to get element name of value?

Anonymous User 2277 04 Oct 2014
need to get all text of value, then use json to send the value to insert all of price to the database, but i had the problem, i can't get the text of all value where input text name='price'. here this is HTML code:
here is Html code:
<input type='text' id='price1' name='price[]'/>
 
<input type='text' id='price2' name='price[]'/>
 
<button type='button' id='btn'/>

JQuery code:

 

<script>
    $('#btn').click(function (e) {
        var myprice = [];
        myprice = $("*[name='price']").val();
        $.post(
            "index.php",
            {
                type: "insert",
                price: myprice,
            }
        ).done(function (data) {
            console.log(data);
        })
    });
</script>


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md