Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 219375 Details for
Bug 386322
Wierd, incorrect result of ctrlf+shift+f
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
example html file
index.html (text/html), 1.13 KB, created by
Zhongwei Zhao
on 2012-07-31 09:50:40 EDT
(
hide
)
Description:
example html file
Filename:
MIME Type:
Creator:
Zhongwei Zhao
Created:
2012-07-31 09:50:40 EDT
Size:
1.13 KB
patch
obsolete
><!doctype html> ><html lang="en"> > <head> > <meta charset="utf-8"> > <link rel="stylesheet" href="style/jquery.mobile.1.1.0.min.css" /> > <script type="text/javascript" src="js/cordova-1.8.0.js"></script> > <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> > <script type="text/javascript" src="js/jquery.mobile.1.1.0.min.js"></script> > <title>Cloud Connected Mobile Application</title><script type="text/javascript"> > jQuery(document).ready(function() { > jQuery.ajax({ > url : "http://<serv-name>/<app-name>/<url>", > type : "GET", > success : function(data, status, xhr) { > var r = jQuery.parseJSON(data); > if (r.result) { > var table='<table>'; > $.each( r.result, function( index, item){ > table+='<tr><td>'+item+'</td></tr>'; > }); > table+='</table>'; > $("#content").html( table ); > } else { > alert(r); > } > }, > error : function(xhr, ajaxOptions, thrownError) { > alert(ajaxOptions + ' ' + thrownError); > } > }); > }); ></script> ></head> ><body> > <h1>Hello Zend!</h1> ><div id="content"></div> ></body> ></html>
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="style/jquery.mobile.1.1.0.min.css" /> <script type="text/javascript" src="js/cordova-1.8.0.js"></script> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="js/jquery.mobile.1.1.0.min.js"></script> <title>Cloud Connected Mobile Application</title><script type="text/javascript"> jQuery(document).ready(function() { jQuery.ajax({ url : "http://<serv-name>/<app-name>/<url>", type : "GET", success : function(data, status, xhr) { var r = jQuery.parseJSON(data); if (r.result) { var table='<table>'; $.each( r.result, function( index, item){ table+='<tr><td>'+item+'</td></tr>'; }); table+='</table>'; $("#content").html( table ); } else { alert(r); } }, error : function(xhr, ajaxOptions, thrownError) { alert(ajaxOptions + ' ' + thrownError); } }); }); </script> </head> <body> <h1>Hello Zend!</h1> <div id="content"></div> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 386322
: 219375 |
219376
|
219565
|
219566