Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
hello, friend my ajax function run on IE and Chrome but not work in FireFox.
This is my Function:-

<script>
  
    $(".share").click(function () {
        var checkboxes = $("input[type='checkbox']");
        var Ids = "";
        for (var i = 0; i < checkboxes.length; i++) {
            if (checkboxes[i].checked == true) {
                Ids = Ids + checkboxes[i].id + ",";
            }
        }

        $.ajax({
            url: '@Url.Action("FoldersId", "Home")',
            type: 'Get',
            data: { id: Ids },
            success: function (result) {

            },
            error: function () {

            }
        });
    });

</script>




pls help.
Posted
Updated 25-May-14 19:27pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900