How to create my own jQuery-like function? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to create my own jQuery-like function?

Take a look at my code below. As a procedure to get better and learn advanced Javascript coding I am trying to create my own JQuery-like element selector. I have various attempts to get as close to the original jQuery Syntax, but it's just not right. To change the inner HTML of the element with the ID "myID" jQuery works like this: $("#myID").html("blah blah blah"); The notation that looks most similar is as follows: new $("myID").chtml("blah blah blah"); I tried different things, but I just can't get rid of the "new" keyword. As far as I know jQuery is written in pure JS, so there has to be a suitable solution for the problem. I looked at the source code at code.jquery.com, searched for "

quot;, but it's way too much for me. Could someone help me out here? What am I doing wrong, where do I think in the wrong direction? Any hints, tips or help highly appreciated. THANK you in advance Pete. https://code.sololearn.com/WcUGUoEXphhS/?ref=app

25th Feb 2019, 11:48 PM
Pete Wright
Pete Wright - avatar
6 Answers
+ 3
I'm not entirely sure what your trying to do but i got some interesting results with the following code. function $4(id) { this.obj = document.getElementById(id); return obj.innerHTML; } console.log($4('p2')) //returns p2 info
26th Feb 2019, 2:00 AM
Logomonic Learning
Logomonic Learning - avatar
+ 1
Thanks, I already completed the JS course and learned a lot from books and w3schools.com. But the ES6 course is new on SoloLearn. I'll go through it.
27th Feb 2019, 5:31 PM
Pete Wright
Pete Wright - avatar
0
Basically I want to be able to call my object's methods WITHOUT creating an instance of it first (using the 'new' keyword) eg.: $("p1").html("some new text") instead of: new $("p1").html("some new text") ______________________________ MonicaL I'd like to create a function with more then one return values, depending on the notation. I want to create my own little library which I can use on my codes as fallback when jQuery is not available. Right now I only have Element.innerHTML but I want to add more. This is just for demonstration. Your code would break after returning the elements inner HTML, because of the "return" keyword. For example, I want to add these methods next: Element.txt(text) to change the inner Text of an element. Element.value(newValue) to change the value of an (input) element Element.att(attribute, value) to add a new attribute with value etc. See updated code on Attempt 5
26th Feb 2019, 3:02 AM
Pete Wright
Pete Wright - avatar
0
\/!ŖŦŁ Thanks for your idea, but it seems that it is depending on jQuery. Meanwhile I found something very interesting and promising on the web and implemented the idea directly in my code. Take a look at ATTEMPT 7 to see it in action. I'm not yet sure if this solves my problem, but after some testing it already looks good and gets the job done. I'll still try out some things and post the result here. Here is the link to the article: http://raganwald.com/2014/07/09/javascript-constructor-problem.html
26th Feb 2019, 1:40 PM
Pete Wright
Pete Wright - avatar
0
Kaimi Thanks! That looks quite nice. I have to take a closer look at your code. You've got a lot of shorthand notations there which I don't exactly know. I think I can learn a lot from your code.
27th Feb 2019, 5:22 PM
Pete Wright
Pete Wright - avatar
0
👌👍Thanks. I'll have to read about the arrow functions.
27th Feb 2019, 5:29 PM
Pete Wright
Pete Wright - avatar