Skip to main content

Posts

Showing posts with the label jquery

TypeError: a.indexOf is not a function blogger

This error might be caused by the jQuery event-aliases like . load (), . unload () or . error () that all methods are deprecated since jQuery 1.8 . Please check these aliases methods in your code and replace them with the . on () method instead. As an Example, Replace the following deprecated excerpt: $ ( window ). load ( function (){      //TODO }); With the following: $ ( window ). on ( 'load' ,  function (){       //TODO }); I hope these solutions will help you a lots.

Post Parameters in Window.open / Window.location.href (Alternative)

In some cases we have a requirement, to POST data i.e. you’re accessing the URL can’t see the parameters passed, as some information might be sensitive so we can’t pass POST parameters in URL, but there is an alternative way to post parameters. Let’s see the Example – The below method is an alternative to Window.open or Window.location.href , if you want to POST the parameters. JavaScript Method:- var openPost = function (url, params) {     var formElement = document.createElement( "form" );     formElement.setAttribute( "method" , "post" );     formElement.setAttribute( "action" , url);     formElement.setAttribute( "target" , "_parent" );     for (param in params) {         var hiddenField = document.createElement( "input" );         hiddenField.setAttribute( "name" , param);     ...

10 Best Pieces of Angular Content In 2017

In this Article, I am going to share the “ Top 10 most popular post ” search “ world-wide ” in 2016.  The List of Post as following, Stayed Informed - Click and Explore Below Most Popular links, #1 ) “Learn AngularJs 1.x and Angular 2” with Examples! #2) “AngularJs vs. ReactJs” #3) “How to Enabling CORS in AngularJs”? #4) “55 Best Difference Between MVC 2, MVC 3, MVC 4, MVC 5 and MVC 6” #5 ) “Export ng-grid” data to Excel, CSV and PDF format in AngularJs #6) “13 Best Advantages for Angular 2” - [Angular2 vs. Angular1] #7) “39 Best Object Oriented JavaScript” Interview Questions and Answers #8) “117 Recommend MongoDB” Tutorial for Beginners [MongoDB] #9) “69 Best Angular 2 Interview” Questions and Answers [Angular 2 QA] #10) “Forget Angular 3!”, Google is Releasing Angular 4, 5, 6 and 7! Introduction of Angular 2 Setup Angular 2 in .NET MVC Advantages of Angular 2 The Major Ch...

75 Best Web Programming Tutorials & Examples [How To]

AngularJs Angular 2 Angular 4 Angular 5 Angular 6 Angular 7 Angular 8 => View All JavaScript TypeScript Knockout.Js Meteor.Js Node.Js React.Js Require.Js AJAX Backbone.Js D3.Js DOJO Ember.Js Ext.Js Glump.Js Grunt.Js jQuery Kendo UI Vue.Js => View All Go Programming Perl Programming Python Programming R Programming Ruby Programming Rust Programming Smalltalk Programming Kotlin Programming Swift Programming => View All HTML/HTML5 Framework7 CSS Properties CSS Module PHP PHP PHP7 PHP String PHP Array Zend Framework (ZF) Aura Framework Fat Free Framework (F3) PHPixie Framework ...

Learn HTML5 Now, for Preparing Secure and Intelligent Solutions

In this post, I am sharing “How to learn and use HTML 5 ”?  And the “ lot of questions ” were asked connected to HTML 5 and its new features for creating secure and intelligent solutions. All the below added questions is very helpful to quickly brush-up your HTML 5 knowledge. Click and explore all the below questions and answers links as, 15 Best HTML5 Interview Questions & Answers What is doctype in HTML5? What is localStorage in HTML5? What is sessionStorage in HTML5? How to enable cache in HTML5? What is Web Worker in HTML5? What is a draggable attribute in HTML5? What is a placeholder attribute in HTML5? What different types of input type are introduced in HTML5? What new elements (tags) are introduced in HTML5? Which property makes round corner to an element? Wh...