Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8772509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:03:10+00:00 2026-06-13T18:03:10+00:00

var nn=oTable.jQuery(‘input:checked’).serialize() keeps throwing error even when using noConflict. on jsfiddle it shows that

  • 0

var nn=oTable.jQuery(‘input:checked’).serialize() keeps throwing error even when using noConflict. on jsfiddle it shows that my code is corect but still the problem persists.i’ve searched enough in google but with no luck.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="hu" dir="ltr">
<head>
    <meta charset="utf-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="Content-Language" content="hu"/>    
    <meta http-equiv="ImageToolbar" content="False" />
    <meta name="MSSmartTagsPreventParsing" content="True" />
    <script type="text/javascript" charset="utf-8" src="jquery-1.8.2.js"></script>
    <script type="text/javascript" charset="utf-8" src="media/js/jquery.dataTables.js"></script>
    <script type="text/javascript" charset="utf-8" src="extras/TableTools/media/js/TableTools.js"></script>
    <script type="text/javascript" src="../res/x5engine.js"></script>
    <script type="text/javascript" src="ckeditor/ckeditor.js"></script>
    <script type="text/javascript" src="js/jquery.md5.js"></script>
    <link rel="stylesheet" type="text/css" href="template.css" media="screen" />
        <style type="text/css" title="currentStyle">
            @import "media/css/demo_table_jui.css";
            @import "jquery-ui-1.8.4.custom.css";
            @import "extras/TableTools/media/css/TableTools_JUI.css";
        </style>
  <title>Adminisztráció</title>
</head>
<body>
        <div id="imNavBar">
            <a href="kereso.php">Kereső</a>
<a href="munka.php">Munka</a>
<a href="ujd.php">Újdonságok</a>
<a href="pass.php">Jelszó</a>
<span>
    <a href="login.php?logout">Kilépés</a>
</span>     </div>

<div id='imAdminPage'>
    <div id='imBody'>
        <div class='imSectionTitle'>Kereső</div>
        <div class='imContent' style='width:auto;margin-left: auto ;margin-right: auto ;text-align: center;'>

<form name='osszes' id='osszes' method='post' action='mentes.php' enctype='multipart/form-data'>
<table class='display' id='table_id' border='0' style='width: 100%;' align='center'>
<thead>
<tr class='vami'>
<th>ID:</th>
<td>Sezonier, Operator la bandă, Industria auto, IT</td>
<td>Akarhol</td>
<td><span><input class='codes' type='checkbox' id='31' name='kodok[]' value='31' />
&nbsp;Lementeni</span>
</td>
<td>
<a target='_blank' href='mentes2.php?kod=31'>Megnéz</a>
</td>  
</tr>
</tbody>
</table>
<div id='inputok'></div>
</form>
        </div>
    </div>
</div><script>
var oTable,oTable2,oTable3;
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(':checkbox').live('click',function(){
    var nn=oTable.jQuery('input:checked').serialize()
Uncaught TypeError: Cannot call method 'jQuery' of undefined
    ;var n=nn.length;
    if (n!='0'){
        $('#imObjectForm').attr('disabled',false);
        }
    else {
        $('#imObjectForm').attr('disabled',true);
        }
});    
    jQuery('#osszes').submit(function(){
        $("input:hidden").remove();
        var fields = oTable.$('input').serializeArray();
        $.each(fields, function(i, field){
            $('<input type="hidden" id="imSpProt" name="imSpProt[]" value="' + field.value + '" />').appendTo('#inputok');
            });
    });
Table = jQuery('#table_id').dataTable({
        "sScrollY": '400px',
        "bJQueryUI": true,
        "sPaginationType": "full_numbers",
        "bSort": false,
        "sScrollX": "100%",
        "bScrollCollapse": true,
        "bAutoWidth": false,
        "sDom": '<"H"lfrT>t<"F"ip>',
        "oTableTools": {
            "aButtons": [
                {
                    "sExtends":    "text",
                    "sButtonText": "<input id='imObjectForm' name='submit' type='submit' value='Kiválasztottak lementése' disabled='disabled' />"
                }
            ]
        },
       "oLanguage":  {
    "sProcessing":   "Feldolgozás...",
    "sLengthMenu":   "_MENU_ találat oldalanként",
    "sZeroRecords":  "Nincs a keresésnek megfelelő találat",
    "sInfo":         "Találatok: _START_ - _END_ Összesen: _TOTAL_",
    "sInfoEmpty":    "Nulla találat",
    "sInfoFiltered": "(_MAX_ összes rekord közül szűrve)",
    "sInfoPostFix":  "",
    "sSearch":       "Keresés:",
    "sUrl":          "",
    "oPaginate": {
        "sFirst":    "Első",
        "sPrevious": "Előző",
        "sNext":     "Következő",
        "sLast":     "Utolsó"
    }
}
    });
    oTable2 = jQuery('#kepek').dataTable({
        "sScrollY": '500px',
        "bJQueryUI": true,
        "sPaginationType": "full_numbers",
        "bSort": false,
        "bAutoWidth": true,
       "oLanguage":  {
    "sProcessing":   "Feldolgozás...",
    "sLengthMenu":   "_MENU_ találat oldalanként",
    "sZeroRecords":  "Nincs a keresésnek megfelelő találat",
    "sInfo":         "Találatok: _START_ - _END_ Összesen: _TOTAL_",
    "sInfoEmpty":    "Nulla találat",
    "sInfoFiltered": "(_MAX_ összes rekord közül szűrve)",
    "sInfoPostFix":  "",
    "sSearch":       "Keresés:",
    "sUrl":          "",
    "oPaginate": {
        "sFirst":    "Első",
        "sPrevious": "Előző",
        "sNext":     "Következő",
        "sLast":     "Utolsó"
    }
}
    });
    oTable3 = jQuery('#adatok').dataTable({
        "sScrollY": '473px',
        "bJQueryUI": true,
        "bAutoWidth": false,
        "sScrollX": "100%",
        "bScrollCollapse": true,
        "sPaginationType": "full_numbers",
        "bSort": false,
       "oLanguage":  {
    "sProcessing":   "Feldolgozás...",
    "sLengthMenu":   "_MENU_ találat oldalanként",
    "sZeroRecords":  "Nincs a keresésnek megfelelő találat",
    "sInfo":         "Találatok: _START_ - _END_ Összesen: _TOTAL_",
    "sInfoEmpty":    "Nulla találat",
    "sInfoFiltered": "(_MAX_ összes rekord közül szűrve)",
    "sInfoPostFix":  "",
    "sSearch":       "Keresés:",
    "sUrl":          "",
    "oPaginate": {
        "sFirst":    "Első",
        "sPrevious": "Előző",
        "sNext":     "Következő",
        "sLast":     "Utolsó"
    }
}
    });
    oTable4 = jQuery('#adatok2').dataTable({
        "sScrollY": '350px',
        "bJQueryUI": true,
        "bAutoWidth": false,
        "sScrollX": "100%",
        "bScrollCollapse": true,        
        "sPaginationType": "full_numbers",
        "bSort": false,
       "oLanguage":  {
    "sProcessing":   "Feldolgozás...",
    "sLengthMenu":   "_MENU_ találat oldalanként",
    "sZeroRecords":  "Nincs a keresésnek megfelelő találat",
    "sInfo":         "Találatok: _START_ - _END_ Összesen: _TOTAL_",
    "sInfoEmpty":    "Nulla találat",
    "sInfoFiltered": "(_MAX_ összes rekord közül szűrve)",
    "sInfoPostFix":  "",
    "sSearch":       "Keresés:",
    "sUrl":          "",
    "oPaginate": {
        "sFirst":    "Első",
        "sPrevious": "Előző",
        "sNext":     "Következő",
        "sLast":     "Utolsó"
    }
}
    });
jQuery('form#urlapocska').submit(function(){
    $(".error").hide();
    var hasError = false;
    var pasw = $("#regipass").val();
    var passwordVal2 = $.md5(pasw);
    var checkVal2 = $("#jelszo").val();
    var passwordVal = $("#ujpass").val();
    var checkVal = $("#ujpass2").val();
    if (passwordVal2 === '') {
        $("#egyes").after('<span class="error">Nem írtad be a régi jelszót.</span>');hasError = true;
        }
    else if (passwordVal2 != checkVal2 ) {
        $("#egyes").after('<span class="error">Nem talál a régi jelszó.</span>');
        hasError = true;
        }
    if (passwordVal === '') {
        $("#kettes").after('<span class="error">Nem írtál jelszót.</span>');
        hasError = true;
    }
    else if (checkVal === '') {
        $("#harmas").after('<span class="error">Jelszó megismétlése szükséges.</span>');
        hasError = true;
        }
    else if (passwordVal != checkVal){
        $("#harmas").after('<span class="error">A jelszók nem találnak.</span>');
        hasError = true;
    }
    if(hasError === true) {
        return false;
        }
});    
});
</script>
</body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T18:03:11+00:00Added an answer on June 13, 2026 at 6:03 pm

    I’m assuming from your code you are attempting to find the input:checked elements within the oTable element. If that is the case, try this:

    var nn = jQuery('input:checked', oTable).serialize()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to show my input data from DB...i'm interest for using jquery dataTable...
I am using the jQuery datatable, and keep getting the error with message Object
here is jquery script <script type=text/javascript charset=utf-8> var oTable; $(document).ready(function() { oTable = $('#example').dataTable({
I am using a few custom jquery buttons with datatables to do some sorting.
I am using the awesome datatables jquery plugin, but I am having some issues
I am using the Jquery datatables to build a table. I need a row
I'm using jquery datatables, and a jqueryui range slider. Datatables has a range filter
I'm using jQuery DataTables . This is my markup: <div class='wrapper'> <form> <table> <tr>
I am using DataTables plugin for jQuery for drawing table on my web app.
I am using the datatables jquery plugin. I am trying to use it as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.