Skip to main content

Home/ jquery/ Group items tagged Paging

Rss Feed Group items tagged

LinkSture Technologies

Brando Responsive and Multipurpose OnePage WordPress Theme - 0 views

  •  
    Brando is a completely modern, feature-rich, professionally designed, fully responsive and multi-purpose onepage WordPress theme. You will have an impressive number of readymade onepage site demos as per your business nature like design / ad / digital media agency, architecture firm, personal resume / vcard / portfolio, freelancer, spa and beauty saloon, art and photography, wedding, restaurant / hotel, tours and travel agency, event landing page, tattoo maker but this is not the limit as you can combine multiple elements from different innovative demo to achieve the style as per your imagination. It provides multiple eye-catching portfolio and blog layouts as well as coming soon page for showcasing your projects, news and other content. The Visual Composer - a widely used, premium, drag & drop enabled, quick content editing tool is integrated and included in the theme free of cost to helps you create and manage website pages content without touching the code. It also offers theme settings panel to manage overall website layout, colors, fonts, header, footer, social sharing and much more. It provides a great import feature to import demo data for your desired onepage demo or multiple different demos also quickly. Brando is extremely polished, cutting edge implementation of high-end search engine optimization enhancement techniques from the well structured and fast executable codebase, better result in all devices and browsers, and rendering your pages spectacularly effective to achieve the top ranks for all the relevant searches at an impressive high speed and hence resulting in higher level of traffic.
pagetribe .

Working with jQuery, Part 3: Rich Internet applications with jQuery and Ajax : JQuery: ... - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • // hides every other <p> on the page $("p:odd").hide();
  • // place a username and password input field on the page <input type=text id="username"> <input type=password id="pass"> // call a server-based PHP file that will process the information passed to it $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}); // conversely, this PHP file could also return information to the function, from which // you could process the results $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}, function(data){ // the data variable contains the text returned from the server, you don't // have to set anything up ahead of time, jQuery will do it all for you if (data != "ERROR") $("#responseDiv").text(data); } );
  • What does this mean? Well, based on the ability to load any Web page, and then parse it with jQuery, you have at your hands a very effective and easy-to-program page scraper, from which you can gather any type of information from any page.
  • ...1 more annotation...
  • <%=message.id %>
Mike More

Paging Listbox; Another jQuery Plugin - 1 views

  •  
    Few months ago I posted a Javascript class on how to Implement a paging listbox using jQuery. which has drawn a lot of traffic and few questions lately so I thought it would be more convenient to rewrite the code as jQuery plugin and make few enhancements plus providing a complete sample code in VB.Net and C#.\n
Mike More

Dynamic Page Generation in jQuery Mobile - 1 views

  •  
    This tutorial walks you through the creation of a Mobile Bible viewer as an example of loading content from XML and dynamically generating pages with jQuery Mobile.
Jay Dee

Good SEO Staff and Services - 2 views

Nowadays, people do not use the yellow pages or go directly to the stores to buy something. They are taking advantage of the internet whenever they have to buy something. For that reason, I have a ...

SEO Perth

started by Jay Dee on 25 Jan 11 no follow-up yet
Mike More

Building Web Presentations Using jQuery Mobile - 0 views

  •  
    jQuery mobile framework provides easily themeable, HTML5-based interface with support for pages transitions, therefore it would be very easy to create simple web presentations that will work on all popular smartphone and desktop platforms.
Mike More

Google Buzz Widget - A jQuery Plugin - 1 views

  •  
    This is a jQuery widget for the brand new social network -Google Buzz- that you can embed anywhere to integrate your buzz stream into your page.
Alexis Sgavel

Farbtastic: jQuery color picker plug-in | Steven Wittens - Acko.net - 0 views

  •  
    Farbtastic is a jQuery plug-in that can add one or more color picker widgets into a page through JavaScript. Each widget is then linked to an existing element (e.g. a text field) and will update the element's value when a color is selected.
Alexis Sgavel

Drag-and-Drop with jQuery: Your Essential Guide - 0 views

  •  
    Learn how to use jQuery, and the jQuery UI Draggable and Droppable plugins, to create drag-and-drop interfaces in your web pages. Includes a full drag-and-drop card game example.
LinkSture Technologies

Paperio - Responsive and Multipurpose WordPress Blog Theme - 0 views

  •  
    Paperio is a visually appealing, clean and uncluttered, SEO and speed optimized multi-purpose WordPress blog theme fully customizable with WordPress customizer. Paperio offers sleek and modern, polished and technologically sophisticated, user friendly and easy to read attractive blog styles, featured post sliders, latest / popular post styles, header and footer styles, different sidebar styles and more to make your blog outstanding with clear content, stylish, highly visible to search engines and extra ordinary fast in page loading. Paperio contains 7 creative and unique demos with different type of styles for different purpose blogs with selection of predefined color skin and you can use custom color also. You can review below various blog styles and I am sure you will love it. But please take a look of the demo below and decide yourself!
anonymous

XML.com: jQuery and XML - 0 views

  • <xhtml:script xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://www.xml.com/jquery.js" type="application/javascript"/> <xhtml:script xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://www.xml.com/designers.js" type="application/javascript"/>
pagetribe .

Working with jQuery, Part 2: Building tomorrow's Web applications today - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • // In this example, each row in a table will get a red background when // the mouse moves over it and a white background when the mouse leaves. $("tr").hover(function(){ $(this).css("background","#0000ff"); }, function(){ $(this).css("background","#ffffff"); });
  • attr(name)
  • // will change the image source, and the image displayed on the page will change $("img").attr("src", "myimage.jpg");
  • ...5 more annotations...
  • // use the val() function to get the text inside the textfield
  • // change the background of every div to red $("div").css("backgroundColor", "#ff0000"); // - or - $("div").css("backgroundColor", "red"); // - or - $("div").css({backgroundColor: "#ff0000"}); // notice the braces and lack of quotes
  • see the problem with them
  • You would definitely not want to place style code into the JavaScript code if you can help it.
  • <img src="/images/space.gif" id="spacer" class="a b c" alt="blank"> // Calls to the attr() function will return the following $("#spacer").attr("src"); // will return "/images/space.gif" $("#spacer").attr("alt"); // will return "blank" // Similarly, you can access the ID in the same way $(img).each(function(){ $(this).attr("id"); // will return "spacer" });
1 - 16 of 16
Showing 20 items per page