Hi there, I am a newbie of Jquery. I downloaded a Moving Boxes code from http://css-tricks.com/examples/MovingBoxes/
It works fine in my HTML file. But my question is How to use this multiple times in one HTML page? I copied the HTML code, and change the #slider to .slider in CSS, but it doesn't work as same as the first one. Can anybody...
I'm working on a calendar. I have multiple droppables besides each other (upside down). On top of those droppables I have two draggable elements which are also resizable. Each droppable is 25px in height and 200px in width. The first draggable is 60px in height (element 1) and the other (element 2) is 20px in height. My problem is when I...
Can any one help me,About how to play video file in jsp application.Where the video file exist in my own mysql databse (BLOB format).Can any one suggest how to play thoes video file in jap page(streaming).
1.is there any API to play video file like. you tube Embed code.or viemo player..
2.is there any server side configuration settings...
Is there a jquery tooltip plug-in or a self-made solution where the tooltip appears in the style / colors of the jquery ui theme in use?
Perhaps by "abusing" the jquery ui dialog?
...
Hi,
I have the following code, however im having a problem getting window.location to work
$('.test_container a').click(function() {
$.ajax({
url: $(link).attr('href'),
type: 'GET',
dataType: 'json',
beforeSend: function() {
$('#lightbox').show();
},
...
I have 7 thumbnail image menus.when user points(mouseover) to a particular thumbnail, I want to change the background-image of <div> to the regarding image of that thumbnail.
thumbnail images menu are in a diff div
...
Hi,
I'm quite new to the whole jQuery/JSON thing but thought I would give it a go. The idea is that I am posting data to a PHP script and then returning a JSON object. This works fine on my localhost but on the web server, Firebug shows that the JSON object is being returned but I also get a 404 error.
Any ideas where I could be going ...
I have such drawing (It can be in a vector format):
It is necessary for me to place it on a site and dynamically to paint it. The user chooses colour (of walls and roof)and both the wall and a roof on a picture change the colour (according to a choice of the user).
The set of colours is not limited.
What technology to use for the ...
How do I check if there's any content in <textarea> ? I need to addClass based on that condition.
Many thanks
...
I have six menu options in my webapp, and when the user hovers over a link (ul>li>a) I switch an image to show a context relevant photo, and I fade the image in and out. However, I noticed that when a user moved their mouse quickly between links, the queue didn't process properly and the user would often be hovering over a link and have...
Hi,
Is there any way I could catch any uncaught exception in javascript? I mean, all my "dangerous" code are in try-catch blocks. But what about exceptions that I don't handle explicitly? I'm using jQuery, my main javascript file starts with :
$(document).ready(function(){})
here I bind some events to some DOM elements. I can use t...
Hi,
Just wondering of anyone knows of any fix to stop the flickering of the superfish menu that expands out over an iframe using IE6 as I am unsure of how to fix or if there is in actual fact, a fix for it.
When I have a vertical menu that extends out to the right with menu options over an iframe, the menu flickers on every menu branch...
$('textarea').focus(function() {
var img = $(this).css('background-image');
$(this).css('background-image', 'none');
});
$('textarea').blur(function() {
$(this).css('background-image', img);
});
.. doesn't seem to work. I think somethings wrong, but I can't figure out what.
Many thanks for your help!
...
Is it possible to use the more than operator in a jquery criteria
For e.g say i want to get all rows where the rowindex is more than a certain value.
Is it possible somehow or do i need create my own function once I have the result set from jquery?
...
how to export a html page content to ms word {javascript, ajax, jquery code}
...
So I've got this table being generated and each cell is given a unique id which is r#c# where the # is the row/column. I've got the code below that extracts the row number and column number from the ID of the cell on mouseover, and it works just fine in firefox and chrome, but does not work in internet explorer.
var cell_id = $(this).a...
How can I make jQuery fire an event when a user checks a checkbox?
<input type="checkbox" id="test" name="test" /><label for="test">Check me</label>
I could do it with .click though that doesn't work when the user tabs to the checkbox. I wasn't able to find info on this in the api docs or while googling.
Cheers.
...
Hi,
Using the jQuery hover function, I want to set an iframe src value to null when the user clicks on the menu item that matches the following:
<li class="current">
<a class="sf-with-ul" href="#">CTI</a>
I basically want to check when the user clicks on the top level menu item when the class is "sf-with-ul" and a href is "#"
Unsure...
I cannot seem to find anything about an async request locking up IE8 but it is happening to me.
The browser will not allow navigation away from the current page until the request completes.
Example: if I open page the script below does a request to place icons on a page based on additional data not available while building the page. Wh...
I am trying to figure out how to highlight just some part of text inside an input box using jQuery. It's quite simple to highlight the entire contents of the input box but how do you highlight just one word or couple of letters?
Thanks!
...