jquery

Conflicts in Motools & Jquery In Joomla . Please HELP!

HI All, I read all the related post but i think i am missing something. My page structure is - 1.load Motools library in Joomla. code is JHTML::_('behavior.tooltip'); JHTML::_('behavior.mootools'); JHTML::_('behavior.formvalidation'); 2 Then load the Jquery library code is <script language="javascript" src="<?=$this->ba...

JQuery UI Slider issue...

<html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> <link href="http://localhost/test/styles/jquery/ui/skins/redmond/jquery-ui-1.7.2.cus...

jQuery tool tip not working when images added dynamically using ajax?

Hello All, i am facing problem in jquery tool tip, when i am searching any image name and then loading ajax based search result in html then my tool tip is not working, even click event is not working. same functionality is working in default image listing can any one help me out? ...

how to get out of the fancybox iframe ?

i have to do some form submission and then get out of the fancybox which holds an iframe.. how to do that ? i tried using $.fn.fancybox.close(); but it cause some error.. thanks in adance... ...

jQuery qTip IE Resize Issue

I am using qTip (jquery.qtip-1.0.0-rc3.min) and jQuery (jquery-1.3.2). When using qTip in IE with non-dynamically loaded content qTip works fine. However, when loading content via an ajax call the qTip content does not resize once content is loaded. I have tried adding an updateWidth on the various callbacks without any luck. In fact, w...

I want to validate max quanity is greater then min qty in validation js.

Hi, I want to validate whether one element is greater then second one using validation plugin of jquery. There is no direct method available for doing this. There is one method called equalTo: but it's not doing stuff. ...

jQuery load html - how to get last table returned

I am somewhat new to jQuery but have been having fun trying learn about all the cool tricks it can do. One of the current things I am trying to use is the load function to get a weather report from one the sites we use for daily reporting. The code I am using is $(document).ready(function() { $("#table").load("weather_url table"); }); ...

Jquery UI slider, setting values bug

i have 3 div's <div id="slider-range1" class="slider-range"></div> <div id="slider-range2" class="slider-range"></div> <div id="slider-range3" class="slider-range"></div> i have added the slider to these div's using class reference $(function() { $(".slider-range").slider({ range: true, min: 0, ...

Is jquery worth a try with an asp.net webform application?

Hai guys, I ve been using javascript to get my validations,effects and so on... Now i ve decide to use jquery in one of my webform application Is jquery worth a try with an asp.net webform application? Will ajax update panel be an issue for me when using jquery? I ve studied that the ready event will not fire for an asynchronous po...

jQuery. How to sort with multiple value pairs with "tinySort"?

Hi there, I'm really not a JavaScript genius or anything so please bare with me. I am using a jQuery plugin called "tinySort" that allows you to sort items for example in an unordered list (it's rather nice!). Doing so, you simply call the following code: $("ul#list > li").tsort("a[title]",{orderby:"title",order:"asc"}); This code s...

Can you get selective cut-down versions of jQuery and Sizzle?

JQuery is progressively becoming bigger and bigger. But, for me 50% of functionality is never used. For example, I never use wrap() and I dont need live(). In addition to this, I never use most of selectors. Are there projects, that create smaller cut-down packs of the jquery library? ...

Javascript in Virtual Directory unaware of Virtual Directory

Say I have the site http://localhost/virtual where virtual is the virtual directory I have an Ajax request that is defined in a javascript file using JQuery $.getJSON("/Controller/Action") When this is called, the client tries to find the url at the root level i.e. http://localhost/Controller/Action If I add the tilde (~) ...

jquery.form: how to set more than one form in one page?

hi! i have a list of names with "delete" button, every row is a form and clicking on delete the list should be updated in real time but don't works because in this plugin i can set only one id (infact it runs when in the list there's only one name) this is the javascript function: $(document).ready(function() { var options = { ...

Create a (edit) hyperlink in front of dropdownbox with jQuery

I have a table with some data. All data is contained in dropdownboxes and textbox. But it isn't easy to see, what is newly written input and what is data from the database. So I want to create a (edit) after these boxes, and replace the boxes with a literal where the contained value in the dropdownbox stands. When the edit-button is pus...

sortable lists, with sortable lists...

hello there - i'm trying to have 3 levels of lists all of which are sortable & draggable into each other. Basically trying to set up an easy way to manage navigation menus with multiple levels. Its 90% there but for some reason it wont save an item into a child list. It just seems to get the parent id of the list it came from?! ie. a ...

How to show live preview in a small popup of linked page on mouse over on link ?

How to show live preview in a small popup of linked page on mouse over on link ? like this http://cssglobe.com/lab/tooltip/03/ but live preview ...

jquery form change detection

hi, nice script. Can someone please explain to me how to implement it with other form tag like radio and also with file upload. have Dream Day ...

How can I delete jquery object at runtime?

$("#id").tooltip({ effect: "slide", tip: '.tooltip' }); I want to delete the object created by this code. "flowplayer jquery tools" plugin This question has an answer described in the bottom of my post! See the bottom if you don't wanna loose you time . ----------UPDATE---------- That should be somethi...

JQuery How to Uncheck A radio button

Hello all, I have group of radio buttons. I want to uncheck the check buttons after an ajax form submitted. I have the following function: function clearForm(){ $('#frm input[type="text"]').each(function(){ $(this).val(""); }); $('#frm input[type="radio":checked]').each(function(){ $(this).checked = false; }); ...

Adding amount to background-position on click (jQuery)

Hey, I pretty new to js and jquery so please bear with me. I'd like to change the background-position and add 1% on #div1 while clicking on #button1 and take -1% on #div1 while clicking on #button2 How could i achive this in jQuery? Alse, bonus question: These are going to get dynamically generated through php. Is it possible to use ...