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 ...
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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jsTree v.1.0 - full featu...
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...
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
...
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!
...
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...
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>
...
Is there any alternative to GeoEXT built with jQuery or other java-script framework?
...
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(){
...
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
...
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...
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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" cont...
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 ...
is it possible to use uploadify in asp (not .Net)?
...
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?
...
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?
...
Does Anyone know of a site that has converted the google maps api store locator to a jquery version?
...
(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...
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');
}...
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>
.
.
....