Archive for May, 2009
How To Add PollDaddy Polls On WordPress Blogs in side bar
Yesterday i have tried to add a poll in the right side.
But i didnt know how to do that, i have been searching for the answer, but cant find the answer that i have worked out.
Now you can see a poll on my blog in the left side…. how is it?
1) First you need a [...]
Check email already exist – Ajax – Jquery
In a registration form i needed to check whether the email already exist or not.
For this i have tried with jquery ajax, we can use this to check usernames, emails,url names… etc.
THE DEMO
How i did…
HTML
<tr>
<td width=”99″>Email</td>
<td width=”154″>
<input type=”text” name=”email” id=”email” size=”20″ class=”input_s1_normal”></td>
<td>
<div id=”emailInfo” align=”left”></div>
</td>
</tr>
Script
First declare a flag variable and other necessary variables
var emailok = false;
var [...]
hidden file problem in ajax
I saw a question in google groups (jquery) last week.
http://groups.google.com/group/jquery-en/browse_thread/thread/4fc3dc88359f93f5?hl=en
For example I have a page: http://mysite.com/content/index.php. On this page I use $.ajax: $.ajax({ type: “GET”, data: “data=123456″, dataType: ‘html’, url: “temp.php”, error: function(msg) {…}, success: function(msg) {…}, complete: function() {…}
});
where temp.php – http://mysite.com/content/temp.php. On temp.php [...]