Quick help on Uncaught SyntaxError: Unexpected token ILLEGAL javascript Function -


i have following piece of code,

<script type="text/javascript">     $(document).ready(function(){         $(".slidingdiv_rm").hide();         $(".show_hide_rm").show();         $('.show_hide_rm).click(function(){             $(".slidingdiv_rm").slidetoggle();         });     }); </script> 

however don't understand why i'm having following error:

uncaught syntaxerror: unexpected token illegal index.php:222 line 222

$('.show_hide_rm).click(function(){ 

i'll appreciate help, thank much!

you forgot closing quotes '

     $('.show_hide_rm').click(function(){... 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -