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 ArticleSticky 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 ArticleSticky 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 ArticleAn 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 ArticleHow 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 Articlewhat 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 ArticleHow 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 ArticlejQuery 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