/python_style_js

This Client Side Framework Created for using the JS With Feel of Python With Shorthands, Excluding the braces part. In Simple Words Small Words but not that small likr JQuery

Primary LanguageJavaScriptMIT LicenseMIT

python_style_js

This Client Side Framework Created for using the JS With Feel of Python With Shorthands, Excluding the braces part. In Simple Words Small Words but not that small likr JQuery

plan is that

Make the below commands

document.getElementById("value");
document.getElementByClassName("value);
document.getElementByTagName("value");
document.getElementsById("value");
document.getElementsByClassName("value");
document.getElementsByTagName("value");

To The Given Below Commands

doc.get_elem(id="value");
doc.get_elem(className="value);
doc.get_elem(tagName="value");
doc.get_elems(id="value");
doc.get_elems(className="value");
doc.get_elems(tagName="value");

I Know there is Jquery out there but this is more describes the workings.