Hi everyone,
I am using uploadify in a project with the following script:
$(document).ready(function() {
$("#uploadify").uploadify({
'uploader': '_assets/flash/uploadify.swf',
'script': 'uploadify.php',
'cancelImg': '_assets/images/nav/cancel.png',
'folder': 'uploads',
'queueID': 'fileQueue'...
I am using DD_roundies to generate rounded corners in Internet Explorer. The pages that have the rounded elements are loaded very often and the roundies script has to run many times to round corners and fix pngs. This costs a lot of time. The script produces some VML elements that are placed in the targeted elements, and some CSS that it...
I've got a UL of items using jQuery UI that I have drag and drop capable. However, I also need to be able to click on one of the items in the list and trigger off a little routine that adds a header line above one of the "li"s. The problem lies with the click on the drag and drop. I've tried to bind the click to a specific region of the ...
Hi There,
I have a < div > in my aspx page which has some notification messages (like success or error messages)
There is also a button which does some work on server. at the end, I am populating a small asp:repeater inside that div, and calling a javascript function which slides down the div.
Theoretically, when you click the button...
Is it possible to set the CSS properties of a DIV to not initially display, and then have jQuery show it at a later time?
I have some popup bubbles on my website that I do not want to show if JavaScript is disabled.
Currently I have calls to hide all elements when the page loads via jQuery, and only show them when the proper button is ...
Using jQuery I want to be able to click an element which will also checks it's related radio button. I had this working fine until we had to add runat="server" to the radio buttons.
When I apply this it prevents my jQuery function from working and I cant figure out how to get round it, heres a simplified version of the code:
HTML
<inp...
How do i use an "or" statement in jquery, i have two separate statements that i think i can combine to be just one:
$('li.members').hover(function() {
$('.members-show').show();
$('.brokers-show').hide();
$('.providers-show').hide();
$('.employers-show').hide();
$('.seniors-show').hide();
return false;
});
$('...
Is there anything else I could use instead of an iframe on my web page by where I still need to pass a url or is iframe it?
Thanks.
...
Hi,
what's wrong with my code, I don't get any values:
<script>
$(document).ready(function()
{
$("input[type=checkbox][checked]").each(function(event){
var get = $("input[@name=\'checkbox_pref\']:checked").val();
$("#result").html("&id=" + get);
});
});
</script>
</head> ...
Hello,
I am fetching value using jQuery .get() like this
$.get('clientarea.php', function(data) {
var Val = $('#abc', data).val();
if (this.val() == 'YES') {
// do this
}
else {
// do that
}
});
Using .get() I want to compare value of #abc [whether 'YES' or 'NO'] & then us...
Hi,
I have a selectbox that needs to be updated dynamically. I am using jquery to perform that using .load($url), where $url is the location of the php file to call. I am wondering if there is a way to call a specific function within that php file instead of calling the entire php file.
...
Hi,
I would like to know what $.each() stands for in jquery,
What is it selecting?
Is there an equivalent in prototype?
Thanks
...
I need to stop the animation and instantly complete all pending animations.
stop doesn't work:
Lets say I have animation that moves element that is on 0px by 100px and I use stop when it moved only 50px. The result will be an element at 50px. The result I want is when I interrupt the animation, even if the element is at 50px it will inst...
I use facebox plugin on certain links.
I want to disable some of the links dynamically. so clicking them will not open facebox.
I tried several ways to do it but none of them seem to work. Facebox still works when clicking on the links.
I even tried this (prevent the click and mouse down events) but it still doesn't disable the face...
I have a submit button when i click on that button i am having jQuery function which sends the Request to server side script
$('#submit_button').click(function(){
$('#MYdialog').dialog('open');
alert("Request Submitting");
$.getJSON("test.php?stcode=<?php echo $this->stcode;?>",
$("#myform").serialize(),
f...
Hi.
I'm loading in an external chunk of html via $.get() and I want to bind a character counter to any textareas loaded within that.
Normally for this kind of task I'd use live() if it was event-based or the livequery plugin if it was a custom function. As I've been using character counter plugins I've been using livequery, but I can...
Hi,
How do I scroll (ideally smooth scroll) down such that the specified control is at the top of the screen? (ie, how do I bring the screen down to the comment section such that the 'comments' title is at the top of the screen?)
...
Hi,
I would like to know if there is any equivalent to the jquery mousemove function in prototype.
Thanks !
...
Is it possible to set the value of a daterangepicker field programmatically? How can this be accomplished?
...
I have <ul> tag, in that I have couple of <li> items. When I added text to list item. Text is showing left side. I want make it center. I tried different ways to make it. But still showing left side.
<ul>
<li > <a href="#fragment-5" >
<asp:LinkButton ID="lnkResources" runat="server"
CssClass="custom-tab" Text="Favorit...