I currently have a site that both needs JSAPI and infieldlabels javascript. I have the following code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery.infieldlabel.min.js"></script> 

<? /* those three lines for my menu */ ?>
<script type="text/javascript" src="http://www.google.com/jsapi" ></script>   
<script type="text/javascript" > google.load("mootools", "1.2.1"); </script> 
<script type="text/javascript" src="/js/MenuMatic_0.68.3.js"></script> 

<? /* INIT */ ?>
<script type="text/javascript">
    $(document).ready(function(){
        $("label").inFieldLabels();
    });
</script>

However, the infield labels do not work. IF I remove the line with Google JSAPI, infield labels start working, but my menu breaks.

How do I make both work?

link|improve this question

no error messages? check the console – negarnil Jan 19 at 15:01
I tried using it (i haven't before) but this is what I get: i.imgur.com/CQYsz.png – mgPePe Jan 19 at 15:19
On the other console in Chrome I get Uncaught TypeError: Object [object Object] has no method 'inFieldLabels' – mgPePe Jan 19 at 15:21
try loading jquery using google.load, code.google.com/apis/libraries/devguide.html. ensure jsapi is loaded before jquery – negarnil Jan 19 at 15:27
I just tried that, yet no success :\ – mgPePe Jan 19 at 15:49
feedback

1 Answer

up vote 0 down vote accepted

There was some conflict, so I used the var $j = jQuery.noConflict(); described here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.