Hey Everyone,
Here is my current problem. I am working with the chat module and I'm building a module that notifies users via AJAX that they have been invited to a chat. The current table structure for the invites table looks like this:
|-------------------------------------------------------------------------|
| CCID | NID | INV...
Hi
I'm making a website using JSP and servlets and I have to now break up a list of radio buttons to insert a textarea and a button. I have got the button and textarea to hide and show when you click on the radio button it shows the text area and button. But this only appears at the top and when there are hundreds on the page this will b...
Hi all.
I have been scratching my head for a while on this one. I dont really play around with HTML formatting that often.
I have a smoothDivScroll using JQuery (http://maaki.com/thomas/SmoothDivScroll/) to scroll through dynamically generated images.
What I want it for, is to have multiple small images lined up right next to each oth...
Hi,
So i have this:
<div id="prompt2" class="simple_overlayFondoBlanco" style="padding: 5px 5px 5px 5px">
<asp:UpdatePanel runat="server" ID="upClausulas">
<ContentTemplate>
//....other controls
<a href="#" id="lbCancelar" class="contratacionVinculos close">Cancelar</a>
</ContentTemplate>
</...
Hello,
How to find below comment block(s) with javascript/jquery regex:
/*
some description here
*/
It may even look like:
/* some description here
*/
Or
/* some description here */
...
Hi
Please give a look at this site.
maimei.ch
After 5 times opening a new site via ajax (fancybox) it crashes in IE?
One little thing is that i load a whole asp.net site via ajax in the new window. so viewstate and other overhead is there twice after. could this be the problem? if yes, why just after 5 times?.
is it possible to call...
I have a blur function attached to my ckeditor like so
editor = CKEDITOR.instances.fck;
editor.on("blur",function(e){
alert("hello");
});
you with me ?
now when I click on the flash button the editor blurs and causes the alert to show.
how to I stop that from happening and still get the alert to appear other times like when the...
Hi Guys,
Given the following HTML:
<div class="parent">
<span class="child">10</span>
</div>
<div class="parent">
<span class="child">20</span>
</div>
I want to filter and hide parent div based on it's span value (child value), so have thought of doing something like:
<script>
$('span.child').filter(function(index) {
return ($(th...
Hi Guys
This is really getting to me now.I have a form that loads when the page loads.In my jquery
'ready' function I append a hidden to that form like so :
$("<input id='thehidden' type='hidden' name='thehidden' value='hiddenval'>").appendTo("#MenuForm")
When I check the form content with firebug i can see the element is added.
["...
Hi SO,
I've got a pretty minor problem that I think can be resolved by re-thinking my CSS.
On a part of a page, I've got a series of images. Initially, each image is hidden (See CSS Below). I've got it working fine. When the page loads, the first image fades in via jquery. There's a timer set up where after X seconds, the current image...
I have a div and three links when a link is clicked the div is set its innerHTML with an embedHTML of video and i need to cause some effects when the current div video is changed on clicking the link
Example :
<a id="Link1" onClick="ChangeVideo(1)">Link1</a>
<a id="Link2" onClick="ChangeVideo(2)">Link2</a>
<a id="Link3" onClick="Change...
I am trying to call to the bit.ly URL shortening service using jQuery with an .ajax call.
update I wondering if this is a cross-domain security issue? I'm making a call from mysite.com to bit.ly
<html><head>
<script type="text/javascript" src="http://www.twipler.com/settings/scripts/jquery.1.4.min.js"></script>
<script type="t...
I am using the Accordion menu to filter a data table. The menu contains two filters, with multiple options under each. You can only have ONE filter selected at a time. If you click between the two options under the first filter, the style class, 'selected' is added and removed without a problem. If you click an option under the secon...
I'm messing around with FullCalendar jQuery calendar, and qTips, so that I can display more information about the event upon mouseover.
I've added a summary element to the FullCalendar js, and also my server code.
I then added a new qTip in the eventMouseover method, based on the span class, which works prefectly. However, if the even...
I am trying to create this tooltip sample for my wordpress it works just fine but as soon as I integrated it in wordpress I can't get the tooltip to show up. The page where I want to work is here
ok I did a little experiment this is test versionand this is the wordpress version. The test version is the code when you do a view source a s...
I have a custom, multi-column sort attached to my jqGrid instance by means of the onSortCol event:
onSortCol: function(index, iCol, sortorder) {
//Manipulate the sort order via custom code, and store it in postData.
return 'stop';
}
The problem I'm running into is that the sort icons in the column headers are falling out of s...
hi guys
i'm new to asp.net mvc..
so basically i just build up a two page app which takes the registration information of the user and post it to the database.
i use a lot of jquery and ajax calls to retrieve data from the database using linq to sql stored proc object.
and currently i'm stuck at one page where after the user submits t...
In the example below, how can you use the event and ui objects to detect which link opened the dialog? Can't seem to get $(event.target).attr("title"); to work properly, and I'm having trouble finding documentation on the 'ui object that is passed. Thanks!
$("#dialog_support_option_form").dialog({
link_title = $(event.target).attr(...
Hi
I have such stuff in my django view:
message = 'sometext'
rating = 7
data = {'message':message, 'rating':rating}
from django.utils import simplejson
return HttpResponse(simplejson.dumps(data))
and this in my site.js:
$.ajax({
'type': "POST",
'url': url,
'data': {'rating':rating},
'success': function(msg){
alert(msg['rating'...
When I uncomment the alert the data is there... like:
{
'Huishoudelijke hulp': 'Huishoudelijke hulp',
'Verpleging thuis': 'Verpleging thuis',
'Verzorging thuis': 'Verzorging thuis',
'24 uurs zorg': '24 uurs zorg',
'Ondersteunende begeleiding': 'Ondersteunende begeleiding',
}
But instead of popula...