
Registered since September 28th, 2017
Has a total of 4246 bookmarks.
Showing top Tags within 12 bookmarks
howto information development guide reference administration design website software solution service product online business uk tool company linux code server system application web list video marine create data experience description tutorial explanation technology build blog article learn world project boat download windows security lookup free performance javascript technical network control beautiful support london tools course file research purchase library programming image youtube example php construction html opensource quality install community computer profile feature power browser music platform mobile user process work database share manage hardware professional buy industry internet dance advice installation developer 3d search material access customer travel camera test standard review documentation css money engineering develop webdesign engine device photography digital api speed source program management phone discussion question event client story simple water marketing yacht app content setup package fast idea interface account communication cheap compare script study market live easy google resource operation startup monitor training
Tag selected: ajax.
Looking up ajax tag. Showing 12 results. Clear
Saved by uncleflo on October 21st, 2016.
A WebSocket is a standard protocol for two-way data transfer between a client and server. The WebSockets protocol does not run over HTTP, instead it is a separate implementation on top of TCP. A WebSocket connection allows full-duplex communication between a client and server so that either side can push data to the other through an established connection. The reason why WebSockets, along with the related technologies of Server-sent Events (SSE) and WebRTC data channels, are important is that HTTP is not meant for keeping open a connection for the server to frequently push data to a web browser. Previously, most web applications would implement long polling via frequent Asynchronous JavaScript and XML (AJAX) requests as shown in the below diagram.
websocket socket remote communication technology http establish application webserver data channel development administration python script howto code server nginx fullduplex internet tech ajax javascript
Saved by uncleflo on June 13th, 2015.
It seems like there's a million calendar and clock widgets out there, and when you look past the eye-candy, they all have one thing in common: they're tedious at best. At worst, counter-intuitive. Sure, a picker that uses sliders or spinners, or looks like an analog clock face might be cute, but did you ever notice how long it takes to position one to the correct hour and minute? Or how about choosing a month that's more than a season away? Worse yet, entering your birth year on a datepicker that forces you to click... backwards... repeatedly... one... year... at... a... time? Does your favorite "pretty" picker even work if your user has a keyboard, but not a mouse? Does it scale larger if the user increases the text size on your page? If not, ask your legal department how they'd feel about an accessibility lawsuit!
jquery javascript time timepicker date picker ajax calendar widget html5 clock month pretty useful keyboard position intuitive development administration format user friendly js web
Saved by uncleflo on April 5th, 2015.
From the born of www era and the implementation of JavaScript and ajax, web is looking for a solution to find out real time client-server bidirectional communication. Now It is been suggested to include within HTML5 and has been in full developmental phase. Although it not yet recommenced by W3, it is been wildly implemented in most of modern web browsers including Google Chrome,Opera,Firefox and safari.
php socket websocket download source communication zone browser implementation javascript ajax library realtime http protocol development administration server webserver
Saved by uncleflo on April 5th, 2015.
Back in June 2010, I published a blog post detailing how to perform Ajax file uploads from your HTML forms. The result worked pretty well, but there was still some room for browser vendors to make things even simpler for us. Turns out, they have. The specific improvement that made this possible is the FormData interface, first introduced in Safari 5, and later in Chrome 7 and Firefox 4.
javascript howto website development programming form data binary upload ajax browser simple guide blog article description explanation
Saved by uncleflo on February 22nd, 2015.
As any good web developer knows, it's important to be constantly vigilant with the handling of user data. We avoid buffer overflows and format string exploits (remember those?) by using safer languages or being careful in our C. To avoid SQL injection, we never build database queries by concatenating user-supplied data. These measures protect the integrity of the data on our servers, but what about our (non-malicious) users?
javascript escape html json ajax hack foolproof approach development web integrity server user security safe malicious administration
Saved by uncleflo on January 24th, 2014.
A complete Yahoo API query analyser that gets data from a large DB of tables on the Yahoo Developer Network. Queries are based on SQL syntax
network developer development html ajax json data xml editor solution query yql language yahoo online web
Saved by uncleflo on September 12th, 2013.
Employees need to access their email from wherever they happen to be – on the road, at customer sites, remote offices, and at home. WebMail clients allows receiving and sending email messages using POP3 and SMTP protocols through both local and remote mail servers. Providing secure filtering of unsafe content while viewing HTML-formatted email messages. WebMail clients can operate under different popular web platforms (PHP, ASP.NET, ruby on rails, java).
ajax web interface mail client user experience webmail php ruby java software online pop3 smtp local remote server apache service
Saved by uncleflo on August 21st, 2013.
CKEditor is a ready-for-use HTML text editor designed to simplify web content creation. It's a WYSIWYG editor that brings common word processor features directly to your web pages. Enhance your website experience with our community maintained editor. CKEditor is an Open source application, which means it can be modified any way you want. It benefits from an active community that is constantly evolving the application with free add-ons and a transparent development process.
office information javascript fckeditor text simple wysiwyg edit nice web online open editor tools source ajax html user
Saved by uncleflo on January 10th, 2013.
Instead, I urge you to use the Google AJAX Libraries content delivery network to serve jQuery to your users directly from Google’s network of datacenters. Doing so has several advantages over hosting jQuery on your server(s): decreased latency, increased parallelism, and better caching. In this post, I will expand upon those three benefits of Google’s CDN and show you a couple examples of how you can make use of the service.
reason google jquery development javascript ajax lib minimal host why htmlencosia
Saved by uncleflo on July 16th, 2011.
Simulate synchronous ajax by blocking - not locking - the UI. This plugin lets you block user interaction with the page or with a specific element on the page. Also great at displaying modal dialogs.
Rounded corners without images! Plus lots of other interesting corner adornments like bevels, notches, dogears, etc. Fun stuff.
Wildly popular slideshow plugin for displaying image or non-image slideshows. Lots of available transition effects such as fade, scroll, shuffle, zoom, and many more. Lots of features and ease of use is what this plugin is all about.
A jQuery wrapper for the Google AJAX Feed API. Lets you easily grab feed output from Google and redirect it onto your page.
A simple way to AJAX-ify any form on your page. Also supports file uploads! Click through for quick start guide, code samples, API documentation, FAQ and more.
jquery javascript plugins web webdesign programming ajax webdev development
Saved by uncleflo on October 27th, 2010.
In line 2 we get the calue from the first field in our page. This variable is used in row 4 again in the AJAX callback. In line 3, we do the same for the second field. In line 4 to 7 is the actual AJAX callback. I put this function on multiple rows for readability, but you can put it on one line if you like. The first parameter is the file you want to do the call on. This can be PHP or whatever. I made a file in the same directory as the HTML file, called "giveMeSomething.php". In this file, all the actions are done (see step 4). The second parameter (between curly brackets) contains all the values you want to pass to the PHP file. The values are delimited bij comma's. Left of the : is the name of the variable in the PHP file, and right of the : is the value (in this case the vars you defined in line 2 and 3). At last we define a function that is executed after the callback finishes. The data you get (and display in an alert) is everything that was echo-ed in the PHP file.
jquery ajax html php json development solution easy example xml library javascript
Saved by uncleflo on September 16th, 2010.
The AutoSuggest class adds a pulldown menu of suggested values to a text field. The user can either click directly on a suggestion to enter it into the field, or navigate the list using the up and down arrow keys, selecting a value using the enter key. The values for the suggestion list are to provided as XML, or as JSON (by a PHP script, or similar). The results of the first request are cached on the client machine and are filtered as the user continues to type, to reduce the number of requests hitting the server.
code css design development howto javascript library programming search ajax autosuggest jquery
No further bookmarks found.