jquery

Draggable Clones Jquery?

Any ideas on how to make the clones draggable? $("#draggable").draggable({ helper: 'clone', cursor: 'pointer', }); $("#snaptarget").droppable({ drop: function(event, ui) { var randomnumber = Math.floor(Math.random()*...

How do I clear the text contents of a div in javascript?

I'm temporarily adding contents to a div,tempDiv, and adding that to a link which is appended to a div, #contentHere, that's displayed. I need to clear the contents of tempDiv so that the links aren't appended to each other, creating a string of urls that don't link to anywhere. $(document).ready(function(){ $.getJSON("data.php", fun...

Jquery select first letter?

I am simply attempting to get jquery to identify the first letter of a paragraph. How would I do this? For example, I have a page with a number of paragrahs on a page. I would like only the paragraphs starting with a specified letter to be given the class "current" and all others to be hidden. I pretty much know how to add the class a...

Refactoring Tabs

HTML: <ul> <li><a href="#tab1">tab1</a></li> <li><a href="#tab2">tab2</a></li> </ul> <div id="tab1" class="tab-content">content 1</div> <div id="tab2" class="tab-content">content 2</div> jQuery $('#mode li:first').addClass('active'); $('#mode li.active').append('<span class="arrow">&nbsp;</span>'); $('#mode li a').click(funct...

How to do REST with PUT and DELETE

It says about the type option of the jQuery.ajax() method that The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers. So... Does that mean that PUT and DELETE won't work if the browser does not su...

How register (call) jQuery function from asp.net usercontrol from codebehind file?

How register (call) jQuery function from asp.net usercontrol from codebehind file? ...

Colorbox not working in IE

on This page in the center is a button that says "request price". I am using Colorbox so that when you click it, there is a lightbox-type popup of a Flash app. This works fine in FF and Chrome. However in IE it is just taking you directly to the page containing the flash rather then making it a popup. Does anyone have a clue why? ...

jQuery include css

How to add css styles inside <body> or <head>, placed in javascript file like this: <style type="text/css"> .popup-bg { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background: #eee; } </style> The only way is to write css inside javascript, there is no access to ...

How to get calculated element width and height in YUI3?

jQuery has handy .height() and .width() utilities to get calculated displayed size of a DOM element. It also has .position() to get coordinates. In YUI3 Node, I see that there are .getX(), .getY() and .getXY() utilities to get position, but I do not see anything for size (or can't look). What's a good way to get element height and width...

jQuery switchClass

Is it possible to undo a switchClass transaition? I'd like an element to slowly obtain class A as you hover over it, and slowly lose it again once the mouse has moved away. However, the function appears to be glitchy, and calling .stop(0,1) doesn't seem to help. In fact, it seems to break it. I have a live example here. Yes, it's a 404...

Can I get operating system's measurement system (metric or US) in javascript

Hi, is there a way to measurement system using javascript/JQuery? I need to display some distance and speed values on the page, but It looks like that there is no such function call I can get this information. ...

Class not overwriting with addClass

I'm using jQuery's addClass to add a class to an tab so when clicked it'll change the class so it's obvious the tab is highlighted. My HTML <div id="mainNav"> <ul> <li id="LinktheBand" onclick="nav('theBand')">The Band</li> <li id="linkTheMusic" onclick="nav('theMusic')">The Music</li> My C...

Uncaught TypeError: Cannot read property 'length' of undefined [jQuery]

I have a plugin that access the length property on many elements. However, the javascript console points to line 12 of jquery.min.js. How can I backtrace to find which line of my plugin has null variable attempting to access length? ...

[jQuery] Descriptions on Hover

<form action=""> <input type="text" value="" class="card-num" /> <input type="text" value="" class="card-cvv2"/> </form> <div class="description"> <p class="card-num">Enter your 16 digit card number</p> <p class="card-cvv2">Enter the 3 digit number at the back of your card</p> </div> All descriptions are hidden initial...

Make fancybox jQuery plugin with results from submitting a form on same page

I am trying to take form results that are generated from a PHP call and populate them into a div that will then appear in a light box upon click of the submit button. So far I have successfully setup the form and am populating the results on the same page into a hidden div. I can make this div appear no problem in a light box by settin...

jquery carousel

Hi to all! Sorry for my bad English! I don't know jquery, but I must to do carousel for student's economic portal. I'm not programmist, just student, who want to help other people to upgrade there economic knomledge. I learned something and can to do simple sites and paint into photoshop, but with this carousel I have got many problems....

ajax Post data missing with tinyMCE on Firefox

I have a problem with my form when I try to submit with ajax. I am using Malsup Form plugin for Jquery but also using tinyMCE editor. When I submit the form and check the $_POST array, there is no data from the textarea. I have tried to use the triggerSave() function but to no avail. Everything is working well in IE. // These options ar...

change image based on drop-down option

Looking to be able to change an image dynamically based on the selection option dropdown with an id of "main" I came across this code which finds the text not the select value, which is exactly what I want. I just need to connect to the image. alert( 'Text is: ' + $('#attribute119 :selected').text() ); The image is formatted like t...

Jquery Selecting an element in a div based on text in a span.

The Markup: <div class="day"> <span>1</span> <div class="icon-shop icon-blank"><p class="event-details" id="shop-1"></p></div> <div class="icon-eat icon-blank"><p class="event-details" id="eat-1"></p></div> <div class="icon-fun icon-blank"><p class="event-details" id="fun-1"></p></div> <div class=...

Jquery find behavior in firefox 3.5.9

Hi, i have the following piece of HTML code on my page: <tr> <td> <div> <input type="hidden" name="test" value=""> <input autocomplete="off" class="ffb-input watermark"> <div class="ffb"> <div class="content"> </div> </div> </div> </td> </tr> In JavaScript I get the <tr> element usin...