jquery

How can I show the month name instead of date range in wdCalendar jquery plugin?

I have recently started using the wdClendar jquery plugin for one of my intranet sites. It works great but there have been a couple requests made that I cannot seem to work out. I have the calendar defaulted to displaying a month view. When the page is first loaded, the location where the date range should be just says "Loading". I have ...

how to get the jstree work .

this is my file omploader.org/vNWJieg/1.png: and this is my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jsTree v.1.0 - full featu...

Hover in IE not working when hovering over full div

I am using jquery addClass code to show/hide elements when rolling over a div. in all browsers it works but in IE it only works when i rollover some text, not the full div. so in this example, if I rollover the showingtext section of the main div, the hiddentext div will show. but if I mouse into the space in between the two floating di...

Data Visualization - showing a Tree in HTML, CSS, JQuery

I have a tree based dataset that I want to visualize in my webpage. the data is just your basic tree: there is a parent node, with subnodes and then subnodes of those nodes. I am looking for a package to visualize the data in a tree format. does anyone know of one? Google has one, but Im wondering if there ar other alternatives ...

How do I connect this css3 webkit animation to an element when it is clicked?

I know, a very simple question, but I don't know! I have: .touch img{ -webkit-transform: scale(2); } How would I make that activate when someone clicks on the element? Thanks! ...

accordion fix (jquery)

HTML <h2 class="sec-title">one</h2> <div class="sec-content">content 1</div> <h2 class="sec-title">two</h2> <div class="sec-content">content 2</div> jQuery: $('.sec-content').hide(); $('.sec-title:first').addClass('active').next().show(); $('.sec-title').click(function(){ if( $(this).next().is(':hidden') ) { $('.sec-title').remo...

Use jquery to pull in the 'next' content

I'm trying to add a 'next' button to my content rotation. The content for each slide are on subpages. It works to click on each slides actual nav link, but the 'next' link won't pull in the content I need. HTML <ul class="navtop"> <li class="selected"><a href="slide-01.html">1</a></li> <li><a href="slide-02.html">2</a></li> ...

What are alternatives to GeoEXT?

Is there any alternative to GeoEXT built with jQuery or other java-script framework? ...

When I use jquery's .hide feature to toggle some div's, the divs overlap following divs (only in ie8)

I am using jquery to hide and show some divs, based on select box choices. When I change the value of the select box, the action that should happen does, but the div that is shown is underneath the next div (the div's arent being "pushed" down). this is the jquery code: <script type='text/javascript'> $(document).ready(function(){ ...

Jquery - Retrieve comments from a Youtube-video using the Api

Hi, how can i get the last 50 comments from a Youtube-video using the Api? http://gdata.youtube.com/demo/index.html Here u can generate a Url. But there is no function like -> give all comments by using the youtube-id Thanks in advance Peter ...

Want JQuery to ignore click on a particular child element

I've delcared a click callback on a div that I would like ignored if a user clicks on a link inside that div. The function looks like this: $(".section").click(function(){ if ($(this).hasClass("solid")) { $(this).removeClass("solid"); $(this).hover(fadeFunction, darkenFunction); $(this).fadeTo(150, inactiveO...

how to use jstree to show content in right div when i click some file .

the tree file is on the left , and the content div is on the right , how to show some data on the right div , this is my code : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Content-Type" cont...

How can I make a tab active on load

Hello everyone! I'm using jquery to create a tab-based featured content area on my website - http://www.gregmalkin.co.uk - but am having trouble getting the first tab to be 'active' on load, and then the active state to change to the selected tab when it auto changes. When I click on a tab it becomes active, but I want them to be set ...

uploadify in asp

is it possible to use uploadify in asp (not .Net)? ...

show datepicker multi month in multiple rows

if i put this code to show jquery datepicker: <script type="text/javascript"> $(function () { $('#datepicker').datepicker({ numberOfMonths: 9, showButtonPanel: true }); }); </script> it shows 9 months all in the same row. Is there anyway to show a grid where i have 3 rows of 3 months each? ...

jquery ui dialog and csrf protection

I am using jquery ui dialog to display form. Unfortunately, this function clears hidden input with csrf token inside my form. Can I somehow force dialog not to clear this field or do I have to store this token somewhere and set the proper field myself? ...

Updated Google Maps Store locator as Jquery

Does Anyone know of a site that has converted the google maps api store locator to a jquery version? ...

jQuery DataTables Plugin: Serializing dataTables variables

(This question is very specific to the dataTables plugin) Hi, I'm using the dataTables plugin (1.70) for jQuery (1.4.2) in my web application, and I'm trying to write a custom .csv export for my tables. I've already got a fully functioning (search, pagination, filter, sort) dataTables set-up using server-side processing. What I'm tryin...

Jquery Image Slider | show/hide functions repeat with quick mouse

Below is my code: if(settings.controlNav){ $('.nivo-controlNav', slider).hide(); slider.hover(function(){ $('.nivo-controlNav', slider).show('slow'); }, function(){ $('.nivo-controlNav', slider).hide('slow'); }...

How to effectively change local changes made to an html document via javascript back to the server ?

So let's say you display a list of divs that each represent a list item with certain properties (for an example a todo list): <div class="list"> <div class="items" id="item1"> <div class="itemtitle">Some title</div> <div class="icon"><img src="1.jpg"></div> <div class="footer1" /> </div> . . ....