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

  • SEARCH
  • Home
  • 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 8558993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:56:13+00:00 2026-06-11T15:56:13+00:00

The error below appears in firebug: Error: Syntax error, unrecognized expression: > jquery line

  • 0

The error below appears in firebug:

 Error: Syntax error, unrecognized expression: >

    jquery line 3

I can’t understand what this is, i tried searching for that character in my code but I can’t find anything. I just found some function call: $('#element').html('<strong>hello</strong>');

There is nothing more, does anyone know more about this?

in pages code:

    <script type="text/javascript">
    window.fbAsyncInit = function(){
       FB.init({ 
        appId: '307355336003233',
         status: true,
          cookie: true,
           xfbml: true 
         });
    };
    (function() {
       var e = document.createElement('script');
       e.type = 'text/javascript';
       e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
       e.async = true;
       document.getElementById("fb-root").appendChild(e);
    }());

    </script>
<script type="text/javascript">
$(document).ready(function(){
  $('.modal').hide();
  $(".nav li a i").tooltip({
        placement: "bottom"
      });
  $("body").tooltip({
    selector: "*[rel=tooltipRIGHT]",
    placement: "right"
  });

  $("*").tooltip({
    selector: "*[rel=tooltipTOP]",
    placement: "top"
  });
  $("* >").tooltip({
    selector: "*[rel=tooltipBOTTOM]",
    placement: "bottom"
  });
      $('.top-link i').on('click',function(){
         $('.top-link i').removeClass('active');
         $(this).addClass('active');
      });
$('.popover-init').popover({
    selector:'*[rel=popoverTOP]',
    placement:'top'
   });
});
</script>

files functons.js

<!-- FB LOGIN -->

  function FBlogin(){
    FB.getLoginStatus(function(r){
      FB.login(function(response) {
        if(response.authResponse) {
          $.ajax({
            type:'GET',
            url: _config_base_url+'/login/ajax_login',
            dataType:'json',
            data:{'at':response.authResponse.accessToken},
            beforeSend:function(){
              $('.ajax-loading').show();
            },
            error:function(_response){
              //openError(_response.responseText);
              $('.ajax-loading').hide();

            },
            success:function(json){
              $('.ajax-loading').hide();
              _document_location = window.location.href;
              /*_json = JSON.parse(json);
              $("#top-logged-out").fadeOut(0,function(){
               $("#top-logged-in").text(_json.first_name);
               $('#top-user').fadeIn();
              });*/
          window.location.reload()
            }
          });
        } else {}
      },{scope:'email,user_birthday'});
    });
  }
  function RemoveAccount(){
$.ajax({
  type:'POST',
  url:_config_base_url+'/account/remove',
  data:{},
  dataType:'json',
  error:function(){
    $('.ajax-loading').hide();
  },
  beforeSend:function(){
    $('.ajax-loading').show();
  },
  success:function(json){
    $('.ajax-loading').hide();
    $('#remove-account-close').trigger('click');
    window.location.href= _config_base_url+'/logout';

  }
});
}
function deleteasd(_id_asd){
$.ajax({
  type:'POST',
  url:_config_base_url+'/asds/delete',
  data:{'id':_id_asd},
  dataType:'json',
  error:function(){
    $('.ajax-loading').hide();
  },
  beforeSend:function(){
    $('.ajax-loading').show();
  },
  success:function(json){
    $('.ajax-loading').hide();
    $('#'+_id_asd+'-asd-content').fadeOut(400,function(){
      $(this).remove();
    });


  }
});
}
function createasd(){

_title = $('input#title').val();
_description = $('textarea#description').val();
_keywords = $('input#tags').val();

$.ajax({
  type:'POST',
  url:_config_base_url+'/asds/create',
  dataType:'json',
  data:{'title':_title,'description':_description,'keywords':_keywords},
  error:function(){
  $('.ajax-loading').hide();
  $('#save-asd').removeAttr('disabled');
  $('#create-asd-errors').text('somenthing was wrong, please try later.').fadeIn(0);
  },
  beforeSend:function(){
  $('.ajax-loading').show();
  $('#save-asd').attr('disabled','disabled');

  },
  success:function(json){
   $('#save-asd').removeAttr('disabled');
  _json = json;
  $('.ajax-loading').hide();

   if(_json.error == 1){

  $('#create-asd-errors').html('<h5>Errors</h5>'+_json.title+'<br>'+_json.description+'<br>'+_json.keywords).fadeIn(0);
   }else{
  $('.modal-body').html('<div class="alert alert-success"><h5>asd successfully created.</h5></div>');
  setTimeout(function(){
    window.location.href= _config_base_url+'/profile/51';
  },260);

   }

  }
});
}
function vote_init(_element){
  _id_asd = _element.attr('name');
  _id_user = _element.attr('id');
 if(_element.hasClass('active')){

   vote_less(_id_asd,_id_user);
 }else{
  vote_plus(_id_asd,_id_user);
 }

}

function vote_plus(_id_asd,_id_user){
  $.ajax({
    type:'POST',
    url:_config_base_url+'/votes/vote_plus',
    dataType:'json',
    data:{'id_user':_id_user,'id_asd':_id_asd},
    error:function(){
   $('.ajax-loading').hide();
    },
    beforeSend:function(){
    $('.ajax-loading').show();
    },
    success:function(json){
    $('.ajax-loading').hide();

    }
  });
}
function vote_less(_id_asd,_id_user){
  $.ajax({
    type:'POST',
    url:_config_base_url+'/votes/vote_less',
    dataType:'json',
    data:{'id_user':_id_user,'id_asd':_id_asd},
    error:function(){
   $('.ajax-loading').hide();
    },
    beforeSend:function(){
    $('.ajax-loading').show();
    },
    success:function(json){
    $('.ajax-loading').hide();

    }
  });
}
function init_favourite(_element){
_id_asd = $(_element).attr('id');
_id_user = $(_element).attr('name');

 if(_element.hasClass('active')){
  $(_element).removeClass('active');
   remove_favourite(_id_asd,_id_user);
 }else{
  $(_element).addClass('active');
  add_favourite(_id_asd,_id_user);

 }
}

function add_favourite(_id_asd,_id_user){
$.ajax({
  type:'POST',
  url:_config_base_url+'/favourites/add',
  data:{'id_asd':_id_asd,'id_user':_id_user},
  dataType:'json',
  error:function(){
   $('.ajax-loading').hide();
    },
    beforeSend:function(){
    $('.ajax-loading').show();
    },
    success:function(json){
    $('.ajax-loading').hide();

    }

});
}
function remove_favourite(_id_asd,_id_user){
$.ajax({
  type:'POST',
  url:_config_base_url+'/favourites/remove',
  data:{'id_asd':_id_asd,'id_user':_id_user},
  dataType:'json',
  error:function(){
   $('.ajax-loading').hide();
    },
    beforeSend:function(){
    $('.ajax-loading').show();
    },
    success:function(json){
    $('.ajax-loading').hide();

    }

});
}








     /* $('#nav-search').css('color','#fff');
      $('#nav-search').on('focusin',function(){
         $(this).css({'box-shadow':'0px 0px 10px 0px #000','border':'1px solid trasparent','color':'#000','background':'#fff','opacity':'3'});

      });
      $('#nav-search').keydown(function(e){
       var _keywords = $(this).val();
       /* ONLY WHEN ENTER KEY*/
       /*if(e.which === 13){
        if(_keywords.length > 0 ){
       SiteSearch(_keywords,_page=1);
       }
     }
       });*/



/*
function SiteSearch(_keywords,_page){
$.ajax({
 type:'POST',
 url:_config_base_url+'/search/ajax_search',
 data:{'keywords':_keywords,'page':_page},
 dataType:'json',
 error:function(){},
 beforeSend:function(){},
 success:function(json){
    if($('#home-decore').is(':visible')){
    $('#home-decore').fadeOut(300,function(){
     $('#wrapper').hide().html(json.view).fadeIn(300);
    });
 }else{
     $('#wrapper').hide().html(json.view).fadeIn(300);
 }

 }
});


}*/
  • 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-11T15:56:14+00:00Added an answer on June 11, 2026 at 3:56 pm

    I found the problem, it’s in the line:

     $("* >").tooltip({
    

    it needed

     $("*").tooltip({
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

OK, so this code below sometimes crashes on the line below //bug!! The error
The below code give me a foreach error. What appears to be the issue
This below codes give me error below: How to generate this codes help me
I'm getting the error below for this SQL statement in VB.Net 'Fill in the
I have an error that appears to be connected to these two links: https://groups.google.com/forum/#!msg/mongoid/L6ESKP8QDpg/gmEyqejdAEEJ
So, I'm a bit confused on this error that I'm getting while compiling/linking a
I am getting the below error when i call NServiceBus.Host.exe. The issue appears to
I'm kind of new to jquery/ajax calls, I have this code below to pull
I am recieving an error message what appears to be permission related. I can't
I get the error below when I try to execute a task with celery

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.