PyjQuery 3.5.1.1

Creator: bigcodingguy24

Last updated:

0 purchases

PyjQuery 3.5.1.1 Image
PyjQuery 3.5.1.1 Images
Add to Cart

Description:

PyjQuery 3.5.1.1

jQuery

jQuery for DicksonUI

##Features
Lightweight Footprint
Only sent around 87kb (minified).
python wheel is around 65kb
python package is around 35kb(Tar archive - gzip compressed)
CSS3 Compliant
Supports CSS3 selectors to find elements as well as in style property manipulation
Cross-Browser
Chrome, Edge, Firefox, IE, Safari, Android, iOS, and more
What is jQuery?
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.
thia is python package of jQuery for DicksonUI
Other Related Projects

Coming soon(python packages)

jQueryUI
jQuery Mobile
QUnit
Sizzle
Resources

jQuery Core API Documentation
jQuery Learning Center
jQuery Blog
Contribute to jQuery
About the jQuery Foundation
Browse or Submit jQuery Bugs

A Brief Look
Import
import jquery
from dicksonui import Application, window

app = Application() # make Application

jquery.install(app) # install jquery

mywindow = window() # make window

app.add(mywindow) # add window to app

# $ is invalid name for python so S used
S=jquery.jQuery(mywindow) # add jquery to window

mywindow.show() # show window

# think S as $ n jquery

DOM Traversal and Manipulation
Get the <button> element with the class 'continue' and change its HTML to 'Next Step...'
S( "button.continue" ).html( "Next Step..." )

Event Handling
Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.
from dicksonui.builtins import setCall, function
hiddenBox = S( "#banner-message" )

S( "#button-container button" ).on( "click", function("event") (

setCall(hiddenBox.show)

))

Ajax
Call a local script on the server /api/getWeather with the query parameter zipcode=97201 and replace the element #weather-temp's html with the returned text.
from dicksonui.builtins import setCall, function, code
S.ajax({

"url": "/api/getWeather",

"data": {

"zipcode": 97201

},

success: function( "result" ) (

setCall(S( "#weather-temp" ).html)(

code('"<strong>" + result + "</strong> degrees"')
)

)

});


Learning Center
Forum
API
Twitter
IRC
GitHub

Copyright 2020 The jQuery Foundation. jQuery LicenseWeb hosting by Digital Ocean | CDN by StackPath

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.