The jQuery Real-Time Push Kwwika Plugin allows you to add real-time functionality to any web page with minimal scripting. .kwwika(config)Configuration options
UsageRegister for the Kwwika Beta programmeIn order to use Kwwika you must first register so we can set up permissions within the Kwwika system to allow your website/domain to receive real-time push data from Kwwika. So, register for the Kwwika Beta programme now. Include script tagsYou need to include the core jQuery library, the Kwwika JavaScript API and the jQuery Real-Time Push Kwwika Plugin files in your web page: <script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script><script src="http://api.kwwika.com/latest/" type="text/javascript"></script><script src="http://api.kwwika.com/latest/plugins/jQuery/jquery.kwwika/jquery.kwwika.js" type="text/javascript"></script>Define HTMLYou define the topic to be requested from Kwwika by adding an attribute to an HTML element. The default attribute to identify the topic to request is data-topic. You identify the value to be placed within the element by adding a data-field attribute to the same element. In the example below if an update occurs on the /KWWIKA/TWITTER/SEARCHES/KWWIKA topic with a value for the ScreenName field it will be inserted as the html contents of the first <div> element. We are using attributes with a prefix of "data-" as the present HTML 5 draft suggests custom attributes should use this prefix. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements. <html> <body> <div data-topic="/KWWIKA/TWITTER/SEARCHES/KWWIKA" data-field="ScreenName"></div> <div data-topic="/KWWIKA/TWITTER/SEARCHES/KWWIKA" data-field="Text"></div> </body></html>Call the jQuery pluginYou call the jQuery Real-Time Push Kwwika Plugin in the same way you call any other jQuery plugin, by supplying a selector to the jQuery method ($) and calling the kwwika() function. <script type="text/javascript"> $(function () { $("div").kwwika(); });</script>ExamplesThe jQuery Real-Time Push Kwwika Plugin examples can be found on the API site: Plugin FilesThe plugin files are hosted on our API server. You can either download them and host them yourself or your own server: |
