Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 789 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 789 Bytes

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.