hi,
i am designing an registration page in asp.net.to group the components(label, ddl and text boxes) i am using panels,but while running the page positions of components are changing. How to fix components to a particular position?
thanks with regards,
radha
...
Hey,
I see in almost news websites bar called quick news and its appear and reading character by character like this site http://www.filgoal.com/English/DefaultDynamic.aspx in the latest news section under menus.
i hope if any one can help me to know how it works or give me a sample for that.
thanks,
...
Hi folks,
First of all I did not write this code. I found it on somebody else's website and I want to learn from it by trying it out myself. However I can't make it work. I've googled for the code in case it's a jQuery plugin that's freely available or anything, but I can't find it anywhere on the web.
I have my sidebar (with id #sideb...
Hi,
In my Bing Ajax Map app the user is presented with a list of locations they can choose from. OnRowClick the map center and zooms on that places location. After it has focused on that location, it shows the info window for it as well.
The problem is that the info window seems to be loading before the map has finished panning. This c...
how can i make a form tag using onsubmit (that executes upon hitting enter) which opens a target window with a given url in a string variable form?
what i have so far:
<div id="row2">
<!-- Intranet Search -->
<form action="" onSubmit="urlGen(this);" method="get" target="_blank">
<input type="text" name="intranet" id="intranet" size...
I have noticed that there is no document.write in SVG.
Currently I'm looking for a similar function .
Unfortunatley I couldn't find a website that lists all the functions related or supported by the SVG DOM (for eg. related to the document object).
Do you know any online resources where I can find SVG documentation, especially relat...
Here are my METAs
<META name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
<META name="HandheldFriendly" content="true" />
and this is my JavaSCript supposedly hiding the URL bar (which is quirky)
window.onload = function () {
setTimeout(function(){window.scrollTo(0, 1);}, 100);
insert...
I use
onClosed:function(){ window.location.reload(); }
option to reload the page after the colorbox is closed but I don't want to always perform the reload but only when a user clicks one HTML button inside the colorbox. Colorbox is closed if one clicks outside the window somewhere or the close button... I don't want to close colorbo...
Hello,
I have a slideshow which basically changes the src attribute of an image and fading it in and out.
function startSlideshow() {
if (i >= images.length) { i = 0 }
var path = images[i].path;
var name = images[i].name;
i++;
image.attr('src', path)
image.animate({opacity:1}, 1000)
.delay(5000)
...
Hi all,
All of this is code is here:
http://jsfiddle.net/yrgK8/
I have a "news" section which is composed of the following:
<ul id="news">
<li><p>asfdsadfdsafdsafdsafdsafdsafdsafdsa</p></li>
<li><p><a href="http://google.com">google.com link</a</p></li>
</ul>
...
Hello All,
COuld you please advise on the following issue because I got confused and need help with the easiest way which I can follow.
I am retrieving some records from the DB in my jsp
<table>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<%
while(resultSet.next())
{
%>
...
Hi guys,
I need PHP to open up a new window with a text from a variable.
Here's what I tried.
echo "<script>
$myWin=window.open('','$myWin','menubar,scrollbars,left=30px,top=40px,height=800px,width=800px');
$myWin.document.write(".$logtext.");
</script>";
but it doesn't work. any better ideas or suggestions? Thanks! :)
...
Hello,
I am looking for best way to do Onsubmit URL Redirection.
Currently I have form like this...
<form action="dologin.php?" method="post" id="frmlogin">
<input type="hidden" value="something" />
<input type="submit" value="go" />
Currently this dologin.php is directing me to clientarea.php
I cant make any changes in dol...
I am working on an application where I need to use same input field for multiple functions.
Searching similar queries via text box
Submitting a query if none of the results interest the user
If user start typing with 'comma' i:e tag1, tag2.. it should be able search for the result
I am relatively new to development, community...
I was reading about document fragments and DOM reflow and wondered how document.createDocumentFragment differed from document.createElement as it looks like neither of them exist in the DOM until I append them to a DOM element.
I did a test (below) and all of them took exactly the same amount of time (about 95ms). At a guess this could...
Hi
I am working on mail client application. I want to show all HTTP links as clickable hyper links.
I have noticed that some clients are sending HTTP links without enclosing them inside the anchor tags. In this case I am failing to show those links as clickable links.
My requirement is to find all HTTP links in a HTML mail and need...
So I am using this jquery plugin to create a nice pie chart on my website. The problem is that the plugin is rounding the values very oddly.
This is the table I give to it:
<table id="pieChart">
<caption>Priebežné výsledky ankety</caption>
<thead>
<tr>
<th></th>
...
I was wondering if anyone could help me get the leading zero to show up when I do a getDate? Right now it's showing up as 8/3/2010 ... I would like it 08/03/2010.
...
Hey,
I have a page where each logged in user is shown as a <div> at a custom position, is it possible to show where the user's <div> is for other people.
I was hoping I could do this in (near) real time.
Just a nod in the right direction again would be fine.
Cheers
edit: is there a way to do this without MySQL?
...
How do I submit a javascript object via jQuery to django?
$.ajax({
type: 'POST',
url: '/fetch-items/',
data: {'foo': 'bar', 'foobar': {'spam': 'eggs'} },
success: function(){
alert('yey');
}
});
django part:
def fetch_items(request):
if request.is_ajax():
print request.POST
#output
>>> <QueryDict: {u'foo': [u'b...