jquery

domai name availbility checker

actually i am looking for jquery and php script for checking domain name availability and whois. like this example http://davidwalsh.name/?s=WHOIS%20Domain%20Availability%20Checker Thanks ...

jQuery.Get, parameter with special characters

Hi, I'm trying to write a jquery interface which requires me to pass a couple of parameters to our CMS. These parameters are in the form "attribute[n]:token" so in a URL you'd end up with "...&attribute[1]:value=hello_world...". Unfortunately when I try to use a $.get to pass this data it chokes for fairly obvious reasons. I'm tried the ...

jQuery: selector question (parent)

hi all, i'm having this markup: <ul class=container> <li rec=1> <div> <div> <div>i'm here</div> </div> </div> </li> </ul> now i'm at the div element ("i'm here"), how can i get reference to the li? i tried div.parent("li"); but didntwork .. ...

jQuery: move element by relative value

hi all, (meaning an elements left-value): what's the easiest way to move an element - eg. 10px to the left (from its current position)? thx ...

jQuery: hidden elements - general question

hi, when elements are hidden, you can't read eg. their dimensions, is this a general javascript problem or is there maybe a workaround in jQuery? i'm having eg. some tabs which contain widgets, initializing them doesn't work properly since they're hidden. thx ...

tinyMCE problem with jQuery load

I have a DIV and a Load button on my page and when I click in Load button the jQuery loads a HTML from another file, this HTML file have texteareas and start tinymce. Ex: <script language="Javascript"> function loadForm() { $("#myContent").load("HTMLFile"); } function goback() { $("#myContent").load("Another HTML File Without...

Can't change this javascript to read less for height than width on mousemove

Hey, So I'm trying to set up this jQuery CSS dock menu and you can enter in a proximity in the setup. The proximity determines when the zoom will be triggered, but you only get to put in one distance -- same for height and width. How can I change this code to allow to enter in a single one for height and a single one for width -OR- how ...

How do I run event triggers and their bound methods synchronously using jQuery?

The function below is called upon page ready, and is designed to mimic clicks through various anchor links, and to trigger those anchors' bound methods so as to reproduce the same DOM that would be configured through manually clicking the same links. function useAnchor() { var uri = document.location.toString(); if (uri.match('#...

Populate TextBox from Database using JQuery or AJAX

Hi, I have the following scenario: An SQL 2000 database with a table containing the columns UserID and UserName. A webpage with TextBox1 and TextBox2. I need to use JQuery, plain JavaScript or AJAX to accomplish the following: When I type the UserID in TextBox1 and press the Tab key, TextBox2 will populate with the corresponding UserN...

How to get values of <input type="checkbox" /> that are checked?

There are multiple <input type="checkbox" value="..." /> in the page. I need to get each of the <input> that is checked to do some operation. I'm using jQuery. ...

How to create a generic id reference with jQuery

I have about 6 div elements with the same class. When I mouseover any one of them I want to show a nother div next to them. I am thinking of giving them all an id of the form id="mydiv-divname" where mydiv- will always be constant. How would I reference the mydiv-* elements. I can't find the exact syntax but I think it should be someth...

How to remove an element slowly with jQuery?

$target.remove() can remove the element,but now I want the process to be down with some feel animation,how to do it? ...

jQuery Corner+Gradient

I have one div element .box It's width is 200px and height is 300px First I want to make it 's corners round. I do it with following: $('.box').corner('round 10px'); Then I want to add gradient to it. SO it will have rounded corners + gradient. I try following: $('.box').gradient({ topcolor: '#000000', bottomcolor: '#ffffff', horizonta...

SIFR3 vs JQuery SIFR

Jquery SIFR reads the style of a selector directly from the css. So there is no need to configure this manually in the javascript as follow. sIFR.replace(futura, { selector: 'h1', css: '.sIFR-root { background-color: #F9F9F9; color: #FF0000; }' // <--- }); I looked trew the SIFR 3 docs but i cant seem to find a command that achiev...

How to create a dynamic Table ?

Is there any way to create a dynamic html table element using Jquery . In This table I want to add the Td inner element as anchor tag. ...

using $.get to get page content and render it into div tag

i want to call page content using $.get method that will call a page(.ascx) and render page content into div in current page(aspx) i have used something like this... didin't work.. <script type="text/javascript"> function calltemp1() { var result = ''; $get("/Views/Templates/_Temp1.ascx",result) $("#RecentstoryDiv").html(result); ...

random images from a folder

I am trying to rewrite my code below to search a folder for all the images (they will be numbered but there maybe gaps, ie not 1.jpg,2.jpg,3.jpg but instead 1.jpg,15.jpg,60.jpg for this reason i would like to search the folder, put all the images into an array and then pick one randomly each time its looped. Any help would be greatly ap...

jQuery fadeIn IE Png Issue when loading from external

I am loading data from external html files within my domain into a div on my webpage using a load content method in jQuery. I take the div out of the new page whilst hiding the div in the current page by fading this out and fading the new one in. There is a png image in both of these divs and it is creating horrid black blobs in IE, work...

$get gets a object expected error, but getElementByID not - why?

Hi guys, I use a lot of JS in my ASP.Net page. At the moment I try to access a lot of labels in usercontrols. In normal labels without UCs, $get and getElementByID both work. But now not. alert(document.getElementById('<%= ucBW1.FindControl("lblTime").ClientID %>').innerHTML); alert($get('<%= ucBW1.FindControl("lblTime")....

Change/update a select box

Hello, I would like to fire an event when a select box is updated, I've tried with change() but this function only work when the user use his mouse to select an option in the selec box. So when I choose option using his keyboard (arrow or first letter of the option element) nothing happen =/ A solution was to use keydown() but as l...