Ajax Jquery Paging with Magic Links
What Is This?
Already we have seen the Magic Link post – a tricky ajax links for making it works with the javascript disabled browsers.
Here, we are going to see how to make a pagination ajax links in the above mentioned trick.
By this way, one can easily change a normal paging into ajax paging by adding [...]
Ajax Links – that work without javascript
Last week i have sent a tutorial to http://www.yensdesign.com about ajax links.(http://yensdesign.com/2009/06/safe-ajax-links-using-jquery/)
Then i have desided to write something about that here….
Say, you are making a website with ajax links (using jquery); What if the user’s browser not enabled javascript?
They cannot go further pages.
Then how to make a website with ajax links, work perfect though the [...]
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 [...]
« Previous Entries