Hello,
I am using the rather fantastic jQuery multiple select plugin, ASM select
This plugin is so close to my needs I have to try and fix the one and only bug I can find.
On initial load, the selector checks for any elements that have the attribute "selected" and selects them. This is good, except when nothing has the attribute "sele...
Hi,
I'm wondering what the best way is to set a global variable with Jquery / Javascript that can be used and updated by multiple functions.
I've a fairly over complex site that uses sliders(http://www.nwph.info/nwph/nwpho/) , I want to add a dynamic breadcrumb and thought that restructuring the code so that the various functions can...
I am trying to stop the animation of my jcarouselled item when the user is hovering over a particular item. I am scrolling non-image content and I want to give user an opportunity to read the scrolled text.
How to do it? It is not even mentioned on the documentation.
...
Is there a beforeScroll event in jQuery? Or can this type of event be replicated at all?
We have a scenario where we need perform an event before a div with overflow:scroll has been scrolled. The problem with using the .scroll event is that this is raised after the div has been scrolled rather than before.
...
Hi,
I'm using the Superfish jquery plugin and its fine. But I've got a menu with *many" voices (at least 300) and I'm wondering if there is a way to put some text field and filter the menu voices basing on what the user write.
Like this (http://jsearchdropdown.sourceforge.net/)... but this one looks pretty ugly!
Regards,
Segolas
...
I am trying to call a javascript function which will set forecolor and backcolor of a control when the control is loaded
But this function is not raising.
<ItemTemplate>
<div onload= "invertColor(this,'<%# Eval("ColorCode") %>')">
<%# Eval("ColorCode") %>
</div>
</ItemTemplate>
Here is my jav...
hello friends,
I am using ajax with jQuery in my cakePHP application.
and my javascript function is placed inside a javascript file.
now in my local system the files are kept in "/sample" directory so the the path while i call the function will be
in ajax.js
$.post({url : "/sample/controller/action"})
but after hosting it the u...
I found some posts with similar issues, but this is something different. I upgraded from jQuery 1.4 to 1.4.2 after I read another post, but the problem still presents itself. I also tried running IE 8 in compatibility mode and nothing seemed to work. Of course, it works perfectly well in Chrome.
Here's the markup:
<section class="pleas...
With jQuery, jQuery-ui and one of the ui themes (I quite like lightness) included
(bear with me, there is a question at the bottom which you can skip to if you like, just wanted to show how I got to where I am)
(sorry if there are any mistakes or bits I have missed out in the code, it does work, but was cutting up the code for ease of ...
I have the following javascript:
var jQT = new $.jQTouch({
touchSelector: '#swipeme',
fixedViewport: false,
fullScreen: false
});
$('#swipeme').bind('swipe', function(evt, data) {
$('#gallery').css('margin-left',parseInt($('#gallery').css('margin-left'))-10...
I uses the jQuery pluins event.drag and event.drop
see a demo (just a reference question is not about restricting movement to a container)
Is it possible to prevent dropping of a drag element on the top of
another element? but it can be dragged over the other.
...
Hi....
I want to move specific div to up on the up link. Same as to move div to down on the
down link. As shown in screenshot, same as i want to insert div before specific div on the
'IB' link. I want to insert div after specific div on the 'IA' link. To delete specific div on the 'D' link.
screenshot
Now of course there will be man...
Hi, I invoke a WebService method asynchronously.
While the method is not complete, I use that jQuery code to update my progress bar (get progress value from that WebService)
var intervalID = setInterval(updateProgress, 1000);
function updateProgress() {
$.ajax({
type: "GET",
url: "myP...
I have images with same width but different heights... I have seen that before but i ca't remember where i see... I want to sort my thumbnails like above.
so let the fight begin :)
...
It seems clear that jquery has become the standard “low level” JavaScript library.
We also have extjs and dojo that provide application frame works and widgets etc.
I was expecting an application framework and widget set that builds on the jquery foundation to have become fashionable by now.
Is there such a widget set and applicati...
I have a list of links, and I would like to use jQuery to set the clicked one as active, and have the rest of them remove their class.
My current setup is like this:
html
<ul>
<li id="li_1" class="active"><a href="#" id="link1">link 1</a></li>
<li id="li_2"><a href="#" id="link2">link 2</a></li>
<li id="li_3"><a href="#" id="lin...
Can jQuery and Mootools work together??
If not when is that case?
thank you
...
During the last 2 years JQuery has become more and more popular. So do you think, it is now time to prefer JQuery to ASP.NET Ajax in ASP.NET projects with Ajax? Has the ASP.NET Ajax Control Kit a future in the ASP.NET world?
...
I'm constructing some data to send over jQuery's $.post, the data that I send looks like this:
authenticity_token: LxHlgi1WU8o0DtaNuiQOit/e+HlGR2plVcToHUAhA6I=
crews[0][boat_id]: 2
crews[0][crew][]: 10
end_time: 1280408400
start_time: 1280404800
Which is from jQuery converting the data object which is prepared by:
creating an array ...
I want to escape HTML tags to entity names, taking text from a textarea and putting the result in a second textarea such that:
<mytag> becomes <mytag>
I'm using .html() and .text() going back and forth OK. My problem is dealing with the textarea element, which acts a little different....
It works fine if I first place the text ...