Jquery & meteor, the best way to integrate?

what is the best way to work with jquery and meteor, I found that the jquery functions go inside the functions meteor.startup but I do not find much information about how to send it to call, thanks

What are you using for the view layer?
Blaze? React? Angular? Vue?

Meteor has no problem with jQuery, but the view layer might

You probably want to start by doing a quick run through the tutorial first:
https://www.meteor.com/tutorials

1 Like

I currently work with React but I want to add effects to my page like hide, this is my template

import React from 'react';
import NavbarLanding from './Landing-Plantilla/NavbarLanding';
import CabeceraLanding from './Landing-Plantilla/CabeceraLanding';
import CuerpoLanding from './Landing-Plantilla/CuerpoLanding';
import PieLanding from './Landing-Plantilla/PieLanding';

export default class Landing extends React.Component {
    
    render() {
        return (
          <div className="container-landing">
             
                  
                <header>
                        <NavbarLanding/>
                    <div className="cabecera-landing">
                        <CabeceraLanding title="Cabecera" subtitle="el pais del nunca jamás."/>
                    </div>
                </header> 
                    <div className="body-landing-">
                        <div className="cuerpo-landing">
                            <CuerpoLanding title="Acerca de mi."/>
                        </div>
                        <div className="pie-landing">
                            <PieLanding title="pie"/>
                        </div>
                       
                    </div>
          </div>
        ); 
    }; // render
} // Landing

        • CabeceraLanding - - - - a example inside of
import React from 'react';
const CabeceraLanding = (props) => {
    return(
    <div className="cabecera-landing">
        <h1>{props.title}</h1>
        <hr></hr>
        <h2>{props.subtitle}</h2>
    </div>
    );
};
export default CabeceraLanding;
CabeceraLanding.reactProptype = {
    title: React.PropTypes.string.isRequired,
    subtitle: React.PropTypes.string.isRequired
};

how can I implement it inside my templates like these?