Quantcast
Channel: Jack @ Web Development » jQuery
Browsing latest articles
Browse All 10 View Live

Check a checkbox via jQuery

jQuery 1.6+ Use the new .prop() function: $(".myCheckbox").prop("checked", true);$(".myCheckbox").prop("checked", false); jQuery 1.5 and below The .prop() function is not available, so you need to use...

View Article



Sticky Footer , fixed footer, pinned footer

1. through css     #footer {    position:fixed;    left:0px;    bottom:0px;    height:30px;    width:100%;    background:#999; } 2. jQuery Easy Pinned Footer...

View Article

Sticky Footer , fixed footer, pinned footer

1. through css     #footer {    position:fixed;    left:0px;    bottom:0px;    height:30px;    width:100%;    background:#999; } 2. jQuery Easy Pinned Footer...

View Article

An AngularJS directive to extend a select control for a language

demo: source code 1: <!DOCTYPE html> 2: <html xmlns="http://www.w3.org/1999/xhtml"> 3: <head> 4: <title></title> 5: 6: <!-- jQuery --> 7: <script...

View Article

How to Remove Render-Blocking JavaScripts

Render means loading, so if a javascript is render-blocking, it means that the javascript is keeping the page from loading. Google recommends to remove javascripts that interfere with loading the above...

View Article


what does the fn means in javascript

In jQuery, fn literally refers to the jquery prototype, the fn property is just an alias to the prototype property. The jQuery identifier (or $) is just a constructor function, and all instances...

View Article

How to Include jQuery in the Javascript Console

run this in your browser’s javascript console, then jQuery should be available… var jq = document.createElement('script'); jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";...

View Article

jQuery Mobile Tips

Tested under jquery mobile 1.3.2, and jquery 1.9 *) Go back $.mobile.back() // orwindow.history.back(); *) change to a cached page $.mobile.changePage($(“#pageId”)); *) change value of a checkbox(radio...

View Article

Browsing latest articles
Browse All 10 View Live




Latest Images