Re : iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix...
This is the wrong place to report a bug. Bug reporting for all jQuery foundation software. - jQuery Forum shows you where to go. JΛ̊KE
View ArticleRe : iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix...
thx, done at https://github.com/jquery/api.jquery.com/issues/741
View ArticleRe : iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix...
I subscribed to the bug report. Let’s see what the devs say. JΛ̊KE
View ArticleRe : iPhone 6 : jQuery(window).height() .width() dont work one bit.. fix...
I’ve been following the responses. I understand why they are reluctant to change things. I suggest you write your correct code as a function, and publish it. You are not the first one to see the...
View ArticleWhat is the purpose of styles() method in jquery ?
i was just going through the source of jquery css() method and came across the following lines of code : function (name, value) { return access(this, function (elem, name, value) { var...
View ArticleRe : What is the purpose of styles() method in jquery ?
It's purpose is to set the style property of an element. It is internal. And it will actually be removed soon: https://github.com/jquery/jquery/issues/2297.
View ArticleRe : What is the purpose of styles() method in jquery ?
https://github.com/jquery/jquery/issues/2297 . JΛ̊KE
View Articlewhy is jquery source code stored in multiple files ??
hey guys , bit of a random question , i was just checking out the jquery project hosted on github here . , and there are so many folders and sub folder and some methods are in one file and the others...
View ArticleRe : why is jquery source code stored in multiple files ??
There's nothing new about it at all. It's done for maintainability and modulatory. Most large libraries are done like this, whether Javascript or otherwise. When the library is "built", the files are...
View ArticleRe : why is jquery source code stored in multiple files ??
I read the custom Jquery build documentation and kind of got an idea , Thanks though Jon ! . :)
View Articleunable to load local json file data on page load of html
$(document).ready(function(){ alert('Level1'); //this is getting fired $.getJSON( "/data/widget.json", function(data) { alert('level2'); //not getting fired...
View ArticleRe : unable to load local json file data on page load of html
Use the developer tools to see if your getJSON failed. Was it invalid JSON? missing file? evil server syndrome? You can also add a .fail call to your code to check programatically. JΛ̊KE
View ArticleRe : unable to load local json file data on page load of html
Oh! It’s invalid JSON… You had an extra comma. { "widgetData": { "title": "Example", "status": "active" } } JΛ̊KE
View Article