Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Javascript Learning Question. Re: Javascript Learning Question.

#140027
ScottMarshall
Participant

Yes I believe you should, the basics of JavaScript will go a long way into Jquery for example in javascript a click function could be

document.getElementById(“#Your Element”).onclick = YourFunctionName

Whereas in Jquery it is very transferable an example would be –
$(“#YourElement”).click(function(){
});