Monday, July 16, 2018

How to find most followers on instagram 2018

Hi,

This page show you how to find best accounts on Instagram, Sort by followers:

Socialreportingtools.com is free tools and I am owner.

Tips :
You can get free stats from your Instagram accounts, if your accounts is public try it. Show top post on Instagram , Best video And etc.

List bellow is shorts link to tools :

Most followers on Instagram 2018.
Most followers the hot Girls on Instagram.
Most Like posts on Instagram at Last week.
Most comments on Instagram.
Best Videos on Instagram at last week, Viral Videos

https://www.mfollowers.com

Please share your ideas and comments for me,
Thank you

Saturday, January 11, 2014

jQueryUI autocomplete work with modal dialog and zIndex

Hi jQuery Developer ;

This option specifies which element the autocomplete  menu is appended to. By appending the menu to the dialog, the menu should inherit the correct z-index.

Example Syntax :
If your dialog HTML looks like this :
<div>
<input type="submit" id="btnSearch" onclick="showDialog()" />
</div>
<div id="ticket" style="display : none">
<label>name</label><input type="text" id="txtName" name="txtName" /><br/>
<label></label><input type="submit" />
</div>
jQuery syntax :

jQuery isNaN function & Example


Hi Dear ,

jQuery isNaN() Function Example 

A NaN, which means "Not-a-Number", The classic example of a NaN is zero divided by zero, 0/0.

w3schools say : The isNaN() method determines whether a value is an illegal number or not a number .

This function return true or false . If the value is NaN return true AND false if not .

Syntax :

Export table to excel using jQuery

Hi dear ,

To export table tag to excel , 
you can use window.open() method .

Refrence :

window.open(MIMEtype , replace);
  • MiMEtype (optional) : Defult Value is "text/html". the type of document .
  • replace (optional) : The document which opened this document.

export table to excel with jQuery
Example source code for export table tag to excel with jQuery :