IE8: Built in Script Debugger!!!!!
I think the title says it all. If you’re using script in your pages, you should get IE8. QED
I think the title says it all. If you’re using script in your pages, you should get IE8. QED
If you’re working in the latest versions of Chrome (~40+) – and maybe Firefox – and you use SPServices, you may start to see an warning: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check http://xhr.spec.whatwg.org/. Vigilant SPServices user frankhale reported this…
I’m not a big fan of clunky workarounds, but they do have their place in the world. This one occurred with a SharePoint 2007 site and IE8. Now I know that by default, this should work fine, but I’m not the first person to run across this issue. It may happen that if you are…
I’ve been watching so many folks out there doing cool things with jQuery, and it’s time to bite the bullet and get up to speed. I wanted to take a look at something I’d recently posted about and see how I could do it with jQuery rather than pure JavaScript to see what the differences…
If you have a parent/child relationship between two lists, you will undoubtedly want your users to be able to create child items without having to type in the common key or ID. I’m not going to go into the full architecture of this here, but here’s an important part of the process. Let’s say that…
When I release a new version of my SPServices library, I always release two versions: the regular JavaScript/jQuery file and the minified version of the same. Minification “squishes” the scripts down, removing comments, white space, etc. so that you can send as few bytes down the wire as possible to keep page load times snappy….
This is a quick one, but it’ll be a post I return to over and over again. When you use Web storage (a.k.a. DOM storage) – localStorage or sessionStorage – to cache data, you’ll often want to know how much you’ve used already. Each browser gives you a different amount of storage to work with,…