jquery

How to "trigger" a click event on a specific anchor element with Javascript? preferably with jQuery

Hello there, What I want to do is issue a click event, preferably with jQuery, on an anchor element, causing the browser to follow that link. I know that my anchor selectors are correct, as they are returning 1 from .length. Here's what I've tried: $('#awesomeLink').click(); But it won't follow the link. How am I doing it wrong? T...

cant get ajax response (JSON) to call 'success' function?

for some reason the success function isnt being called? javscript: $.ajax({ type: 'POST', url: 'http://localhost/hf_latest_desktop/st_pages/user_area/acc_buttons/pass_change/pass_change_ajax.php', data: data, dataType: 'json', success: function(e){ console.l...

Prevent Uniqe Text in jQuery Autocomplete

I'm working on a project where I need a jQuery auto-complete for Cities. What I don't want is for someone to enter in a unique city name and have it ball up my system. I need to be able to CLEAR the input if someone types it in incorrectly and FORCE them to use the list I give them. I can get the dropdown working properly using the jQ...

jQuery .val() Selector Confusion

I've kind of written myself into a corner, and was hoping there was an "easy" way out. I'm trying to loop through a series of things on my page, and build a key:value pair. Here is my structure: <div class="divMapTab" id="divMapTab34"> <div class="divFieldMap"> <select class="selSrc" id="selTargetnamex"><options....></sele...

Matching a String and then incrementing a number within HTML elements

Hello all, I have tags in a html list, here is an example of two tags. <div class="tags"> <ul> <li> <a onclick="tag_search('tag1');" href="#">tag1 <span class="num-active">1</span></a> </li> <li> <a onclick="tag_search('tag2');" href="#">tag2 <span clas...

How would i implement swfobject in this jquery overlay?

http://stackoverflow.com/questions/1785762/how-to-add-a-full-sized-image-to-the-center-of-a-webpage-using-jquery/1787976#1787976 The code the guy posted... ...

how to assign datetimepicker to this label using jquery

<label for="Date"> dateformate: <span id="date-<%=Model.ID%>"><%=Html.EditorFor(model => model.Date)%></span> </label> I need to assign datetimepicker for this lable? when any user clicks on the date label datetimepciker should popup? thanks ...

jQuery li with image fade in background (fade in class)

I'm currently using this code: var gallery = $('ul#gallery').children(); $(gallery).filter(':even').not(':last').hover(function () {$(this).toggleClass('next')}); I'm trying to make it fade this new class in. Currently, there's an <li> with an image in it, no background. When the 'next' class is added, it gives it a background image ...

JQuery UI popup elements not positioning correctly

I am using both JQuery UI Dialog and JQuery UI autocomplete both have the same erroneous behavior when they popup, the position is always 0,0! I have tried some different position arguments when popping up the dialog but non seems to help. Any clues? Is this a bug in the position calculation in JQuery? Or is this some css bug? Version...

Sliding through divs at interval - jQuery

Hey, I have a list of around 30 divs (see below.) and would like to hear any suggestions on the best way to rotate through them by sliding in one at the top and removing one from the bottom at a set time. Something like every 5-10 seconds. Also even though there are 30 on the page I would only like to show a list of 10 and have the rest...

Using a variable name in XMLHttpRequest

Hi All, I am using jQuery and trying to load a variable in place of a named xml file. My Code: $(document).ready(function() { // bind 'myForm' and provide a simple callback function $('#theForm').ajaxForm(function(responseXML2) { var myxml = responseXML2; alert(responseXML2); disp...

jQuery Dialog, checkboxes and setting values outside the modal

Having some problems with the jQuery UI Dialog and using checkbox values within it. What I have is a form with the first few selections in it and a link that says "more". When a user clicks this they open a Dialog box and can choose from a full list of options. With the first batch of checkboxes (not in the Dialog) I am setting their v...

Multiple Pagers for Multiple Jquery Cycle Instances on same page?

Im trying to figure out how I can have multiple pagers associated to multiple jquery cycle slideshows that are all on the same page without manually creating new classes and a script to reference them. My HTML looks like this. <!-- PROJECT --> <div title="Challenge Factor" class="project"> <div class="projectinfo-top...

Invoking jQuery function without an element

So, I use jQuery quite extensively and I am well aware of the "right" way to do the below, but there are times where I want to solve it in a more generic way. I'll explain. So, I may have a link, like this: <a href='menu' class='popup'>Show menu</a>. Now, I have a jQuery function that fires on click for all a.popup that takes the href-a...

jQuery ajax function to call php script which returns a value?

Hello! Thank you for looking at my issue, hopefully you can help me out as I'm an not well versed in writing JavaScript functions and am relatively new to using jQuery... Anyways, I need a way to use jQuery's ajax call to asynchronously call a php script which will return a value and update the value in a header element. Anyone know of...

jQuery:Looping all radio buttons inside an HTML table

I have an HTML table having n rows and each rows contain one radiobutton in the Row.Using jQuery , How can i look thru these radio buttons to check which one is checked ? ...

Margin animate problem with Monitor display settings

I have an issue with an animation on a webpage. I have this div with text inside of it that I set the margin using css and when the page is loaded I use jquery to animate the div to a certain part of the page. The problem is it works with my concrete pixel settings, but if I change the properties of the monitor display settings in screen...

Permission Denied using Javascript/jQuery on a local file

function publish(text) { $('#helpdiv').prepend(text); } function get_help(topic) { $.get(topic, publish); } <p>Hi. <a href="#" onclick="get_help('inline-help.html'); return false;">click here for more help.</a></p> <div id="helpdiv"></div> I've inherited this chunk of HTML and javascript above (snippet). It is/was going to be use...

jqueryUI dialog box header size

Hi, I am creating hotel booking system which requires lots of modal dialogs. For this purpose I am using jqueryUI dialog widget. yesterday I embedded it on one of the features of application but this time when dialog opens upon click then its Header is very large about 300-400px in height where as normal header is about 40px in height. E...

jquery, if hovering over an element injects something into the DOM, can I still reference it?

if hovering over an element injects something into the DOM, can I still reference it? Or do I have to use the live plugin? i' using jqeury 1.3.2 i.e. can I do $("#someItem").attr("src", "htt..."); on it? I am trying to do it, but I think its not working b/c its a newly added item to the DOM. ...