Is there a way to create sticky (floating), vertical icon buttons for a page using jQuery or other library? The buttons are centered vertically on the left or the right of the screen as a bar, and remain in the same location when the user scrolls. Here's an example of a library that generates the buttons for Wordpress: http://www.clickon...
Hi,
I'm using jQuery BBQ: Back Button & Query Library, which is a great jquery plugin by Ben Alman, and as the name implies provides browser history behavior for a javascript dynamic pages.
My problem is that the fragments are getting stacked in the browser's title, when in debug I can see it in the document object (document.nameProp, d...
I am trying to implement 'time-ago' feature in my website using a JQuery timeago plugin. Unfortunately I have encountered some problems.
<script type="text/javascript" charset="utf-8">
jQuery("abbr.timeago").timeago();
</script>
var content = document.getElementById('div');
var html = "<abbr class=timeago title=2008-07-17T09:24:17Z><...
Anybody know of a jQuery plugin like this flash-based one? http://www.flshow.net/
...
Hello everybody! (hello dr.Nick) :) So I posted a question yesterday about a content loader plugin for jQuery I thought I'd use, but didn't get it to work.
http://stackoverflow.com/questions/2469291/jquery-could-use-a-little-help-with-a-content-loader
Although it works now, I see some disadvantages to it. It requires heaploads of file...
I'd like to implement a tab bar using jquery-ui-tabs that has been customised to work like it does on HootSuite. Try this on HootSuite to see what I mean:
Log in to your hootsuite.com account
Click the + symbol to the right of your tabs
Add tabs named "MMMMMMMMMMMMMMMMM" until a "More..." tab appears
You'll see this:
HootSuite incl...
I m havin a jqueryui modal form. and i m using jquery cluetip tool tip plugin but tool tip is not working in a proper way on modal window form.. this is the screen shot ...
Star is showing the place where tool tip must be there and arrows are showing the place where tool tip is showin.. can any body tell me how to figure this out..
Edi...
Fellows, I dont seem to be getting a solution.
I have a a video gallery which I create by dynamically from a database.
I have managed to create a flash object which plays well without FancyBox, however I want a person to click on the gallery and then an swobject is created which will then be show on a fancybox.
Here is part of my jav...
I have recently noticed that a lot of JavaScript files on the web starts with ; immediately following the comment section.
For example, this jQuery plugin's code starts with
/**
* jQuery.ScrollTo
* Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
* Dual licensed under MIT and GPL.
* Da...
I'm using a jquery validation plugin
First I add the validation to the form:
$('#EmployeeForm').validate({
rules: {
"Employee.FirstName": "required",
"Employee.PatronymicName": "required",
"Employee.LastName": "required",
"Employee.BirthDay": { required: true, date: true }
...
Hi have two forms with the exact same validation rules, but different ids that I'd like to combine into just one function. How can I do that?
var validator = $("#ValidateForm1").validate({
errorPlacement: function(error, element) {
if ( element.is(":radio") )
error.appendTo( element.parent().next().next() );
else if ( e...
Any JQUERY experts know how nosotroshq.com is creating the effect in their top nav? For example, when you mouse over "ABOUT US" it slowly animates down. Any ideas?
...
Given the following:
$("#taglist").append('<li><a href="">' + v + '</a></li>').hide().fadeIn();
Why does it fadeIn the entire taglist LI list, and not juse the new item that was appended which is what I want to happen?
Thanks
...
Hello, I am currently developing a site that I make use of two jQuery plugins:
jQuery Flickr plugin
jQuery Slimbox plugin
The first plugin is used to pull in flickr photos from a specific account. These photos are displayed as thumbnails on the page. I am then using the second plugin to display larger views of these images.
Because...
I'm using the plugin http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ to create tooltips with JQuery but I can't created tooltips containing 3 (or more) lines of HTML code.
I need to render as tooltip the content shown below (obviously the content is generated dynamically an this it only a proof of concept)
<p>Line1</p>
<p>L...
I have a problem with the jQuery UI Slider. The issue also appears on the demo.
It is more obvious in Chrome - if you go to http://jqueryui.com/demos/slider/#steps
and slide the slider, you'll not see anything wrong. If you then click "New Window" or go to (http://jqueryui.com/demos/slider/steps.html) to view the demo in a new window...
I'm looking for the best way to create a custom border around an HTML panel. I have a set of images for the sides, corners etc.
I need a good way to place them and stretch the sides dynamically to match the panel size.
If there is a jQuery plugin to do this I would prefer using it.
UPDATE: My main target platform is IE7. So it has to wo...
I am very new to JavaScript and only have the most basic understanding of how it works, so please bear with me. :) I'm using the jquery.innerfade.js script to create a slideshow with fade transitions for a website I'm developing, and I have added navigation buttons (which are set as background-images) that navigate between the “slides”. ...
I'm writing a jQuery application to allow analysis of data with the help of visual cues. My data is retrieved via XMLHttpRequest in the form of JSON. The visual cues include histograms, spark lines, and various other graph types. The idea is that the user is able to narrow their data via these various visual views.
My question is thu...
Hello. I am having trouble constructing a jqGrid TreeGrid using local data. This method works just fine as a regular grid if you comment out the treeGrid and ExpandColumn attributes, but once you add those to try to make it a tree grid, it doesn't create a tree grid (it just creates a "normal" grid), and it no longer sorts properly.
I ...