Users Pricing

forum

home / developersection / forums / how to get element name of value?

How to get element name of value?

Anonymous User 2211 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>


I am a content writter !


1 Answers